@font-face {
    font-family: myFirstFont;
    src: url(../font/Supply\ Center.otf);
}

body{
    background-color: black;
    text-align: center;
}

*{
    font-family: myFirstFont;
}

.game-logo{
    color: white;
}



.main-div{
    display: flex;
    width: 640px;
    height: 640px;
    background-image: linear-gradient(#1D4957, #7B959F);
    margin: auto;
    
}

.menu{
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 480px;
    background-image: linear-gradient(#95591E, #F5B781);
    justify-content: space-evenly;
    margin: auto;
    border-radius: 25px;
    align-items: center;
}




a:link, a:visited {
    display: flex;
    height: 25px;
    width: 150px;
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

a:hover, a:active {
    background-image: linear-gradient(#1D4957, #7B959F);
    color: white;
}

#home-a-element{
    all: unset;
    cursor: pointer;
}

#q-and-a-container{
    background-color: white;
    max-width: 640px;
    margin: auto;
    padding-top: 1px;
    padding-bottom: 1px;
    border-radius: 16px;
}

#answers-div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-evenly;
}