body {
    background-color: black;
    background-image: url(Images/background_2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.Title{
    color: rgb(0, 217, 255);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    font-size:80px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(0, 255, 204);
    transition: all .5s;
}

.Title:hover{
    color: rgb(89, 0, 255);
    font-size: 100px;
}

.h1{
    color: rgb(255, 98, 0);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    font-size:40px;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    transition: all .5s;
}

.h1:hover{
    color: rgb(0, 217, 255);
    font-size: 60px;
}

.navbutton{
    background-color: rgb(0, 255, 94);
    width: 400px;
    height: 50px;
    border:none;
    border-radius: 25px;
    font-family:'Courier New', Courier, monospace;
    font-size: 30px;
    transition: all 0.5s;
}

.navbutton:hover{
    font-size: 25px;
    width: 385px;
    height: 45px;
}

.navgames{
    background-color: rgb(0, 89, 255);
    width: 400px;
    height: 50px;
    border:none;
    border-radius: 25px;
    font-family:'Courier New', Courier, monospace;
    font-size: 30px;
    transition: all 0.5s;
}

.navgames:hover{
    font-size: 25px;
    width: 385px;
    height: 45px;
}

#feedback{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

#nav{
    background-color: #8400ff00;
    overflow: hidden;
    height: 50px;
    border-radius: 25px;
}

#gamesframe{
    display: block;  /* iframes are inline by default */   
    height: 90vh;  /* Set height to 100% of the viewport height */   
    width: 99.6vw;  /* Set width to 100% of the viewport width */     
    border: none; /* Remove default border */
    background: rgba(0, 208, 255, 0.706); /* Just for styling */
}