body{
    margin : 0px;
    padding: 0px;
    font-family: 'Architects Daughter', cursive;
    font-size: 20px;
}
.main{
    min-height: 100vh;
    background: url('../images/bg1.jpg');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
}
.main > div{
    text-align: center;
}
.heading{
    font-size: 100px;
    font-weight: 900;
    color: black;
    font-family: 'Caveat', cursive;
}
.wrapper{
    background-color:#ffffffbb;
    width: max-content;
    margin: 20px auto;
    padding: 40px;
    border-radius: 20px;
}
.play-button{
    background-color: red;
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Architects Daughter', cursive;
    margin: 10px;
}
.play-button{
    display: block;
    background-color: red;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 40px;
    font-weight: bold;
    margin: 10px;
}
.nav-bar{
    display: flex;
    background-color: #ff0000aa;
    justify-content: center;
}
.nav-bar > div{
    margin:10px 20px;
}
.nav-bar a{
    color: white;
    font-weight: 900;
    text-decoration:none;
    font-size: 25px;
}