@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #9c9c98;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#_navbar {
    background-color:  #f8f6e3;
    color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5em;
    font-family: 'Press Start 2P', cursive;
    margin: 15px;
    padding: 12px 24px; 
    border-radius: 10px;
    border-style: solid;
    border-radius: 10px;
}

#_navbar-logo {
    width: 100px;
    height: 100px;
}


#_card {
    background-color: #fffbe6;
    color: #222222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.7em;
    margin: 40px auto;
    padding: 48px 56px;
    border-radius: 18px;
    border: 4px solid #e6d8b8;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 24px 0 #e6d8b855;
}
#card-title {
    font-size: 1em;
    margin-bottom: 24px;
    font-family: 'Press Start 2P', cursive;
}

footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f6e3;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

