* {
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
        
    font-family: -apple-system, sans-serif;
    color: white;
    background-color: darkslateblue;
}

body.page--overdue {
  background-color: coral;
}

body.page--mojipicker {
  background-color: mediumaquamarine;
}

/*Removing for now because this is causing issues with the title link*/
/*a {*/
/*  color: lightblue;*/
/*}*/
/**/
/*a:visited {*/
/*  color: plum;*/
/*}*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 12px 24px;
}

header h1 {
    line-height: 1;
}

header a {
    display: flex;
    align-items: center;
    
    text-decoration: none;
    color: white;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 16px;
}

#social-links {
    display: flex;
    gap: 12px;
}

#social-links img {
    width: 24px;
    height: 24px;
}

#center-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#site-title {
    gap: 8px;
}

#site-title img {
    width 36px;
    height: 36px;
    border-radius: 4px;
}
