* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #30302e;
    color: 	#ffc214;
    font-family: 'Nanum Brush Script', cursive;
}

.main {
    width: 100vw;
    height: 100vh;
}

.homePage {
    width: 40%;
    height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gameHeader {
    font-size: 3vmin;
    margin-top: 10%;
}

.allNevigationButtons {
    margin-top: 5%;
    height: 60%;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.allNevigationButtons h3 {
    margin: 2% 0;
}

.image {
    width: 100%;
    height: 100%; 
}

a {
    text-decoration: none;
}

.firstButton, .secondButton {
    width: 100%;
    height: 100%;
    background: #ffc214;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.firstButton {
    background-image: url(btn1.png);
}

.secondButton {
    background-image: url(btn2.png);
}

.last-quote {
    width: 100vw;
    position: fixed;
    bottom: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1000px)  {
    .homePage {
        width: 100%;
    }

    .allNevigationButtons {
        margin-top: 10%;
        width: 80%;
    }

    .allNevigationButtons h3 {
        margin: 10% 0;
    }
}