@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
body{
    background-color: #3D0C02;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: whitesmoke;
    text-decoration: none;
  }

.title{
    color: whitesmoke;
    font-size: 6vh;
    margin-top: 5vh;
}

.title2{
    color: whitesmoke;
    font-size: 3vh;
    margin-top: 5vh;
}

.option h2{
    background-color: rgba(0, 0, 0, 0.5);
    color: whitesmoke;
    font-size: 8vh;
    margin: 5vh;
    border-radius: 25px;
    transition: .5s;
}

.option h2:hover{
    background-color: #100c08;
    font-size: 15vh;

}

.option2 h2{
    background-color: #100c0880;
    color: whitesmoke;
    font-size: 5vh;
    margin: 1vh;
    border-radius: 25px;
    transition: .5s;
}

.option2 h2:hover{
    background-color: #100c08;
    font-size: 10vh;
}

.image{
    justify-content: center;
    width: 30vw;
    float: left;
    margin: 1vw;
}

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: #100c08;
}

@media screen and (max-width:  768px){
    *{
        justify-content: center;
        margin: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    .title{
        font-size: 3vh;
    }
    .option h2{
        margin: 1vh;
    }
    .option h2:hover{
        font-size: 8vh;
    }
    .option2 h2:hover{
        font-size: 5vh;
    }
    .image{
        width: 90%;
        margin-left: 5%;
    }
}