*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial;
}
.header-section{
    display: block;
    overflow: auto;
    height: 70vh;
}
video{
    position: absolute;
    z-index: -1;
    top: 0;     
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: fill;
    width: 100%;
    height: auto;
    max-height: 70%;
}
nav{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px, 90px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
}
nav .aagamerilogo{
    display: block;
    margin: 25px 20px;
    width: 40%;
    max-width: 200px;
    height: auto;
    float: left;
}
.navbar-links ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar-links ul li a{
    line-height: 80px;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.navbar-links ul li a:hover{
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}
.toggle-button{
    position: absolute;
    top: 24px;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
.presentation h1{
    background-color: 0;
    text-align: center;
    font-size: 2.5rem;
    padding-top: 100px;
    margin-right: 22%;
    margin-left: 22%;
    color: whitesmoke;
}
.content{
    width: auto;
    height: 500px;
}
.platform{
    background-color: #161515;
    height: auto;
    width: auto;
    margin-bottom: 20px;
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}
.platform p{
    width: auto;
    height: auto;
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: large;
    margin-left: 10px;
    margin-right: 10px;
}
.games-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.game-content{
    background-color: #404040;
    max-width: 600px;
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
}
img.gamebanner{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
p.gamesdescription {
    text-align: center;
    color: rgb(215, 243, 250);
    padding: 10px;
}
p.gamename-button{
    text-align: center;
    color: rgb(86, 171, 193);
    font-size: large;
    bottom: 0;
    left: 0;
}
img.playstorelogo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
img.playstorelogo:hover{
    opacity: 0.7;
}
.game-content-pc{
    max-width: 600px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
}
.gamename{
    display: block;
    color: white;
    text-align: center;
    font-size: large;
    padding: 10px;
}
img.gamebannerpc{
    border-radius: 5px;
    height: 150px;
    width: 150px;
}
.gamebannerpc:hover{
    opacity: 0.7;
    box-shadow: 0 0 10px #ccc;
}
.team-container{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 10px;    
    width: 75%;
    height: auto;
}
h1.teamtext{
    background-color: #62a8f7;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
}
.more-button-container {
    text-align: center;
    margin-top: 25px;
}
.more-button {
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.more-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
.member{
    position: relative;
    display: inline-block;
    height: 300px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
.member-image{
    border-radius: 10px;
    height: 100%;
    width: 100%;
}
.hover-warn-high{
    position: absolute;
    bottom: 1px;
    left: 20px;
    color: #fff;
    font-size: larger;
}
.hover-warn-low{
    position: absolute;
    bottom: -10px;
    left: 15px;
    color: #fff;
    font-size: larger;
    display: none;
}
.image-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(253, 249, 45);
    -webkit-text-stroke: 0.15px black; 
    font-family:'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:left;
    opacity: 0;
    transition: opacity 0.25s;
}
.image-overlay--blur{
    backdrop-filter: blur(10px);
}
.image-overlay > * {
    transform: translateY(15px);
    transition: transform 0.25s;
}
.image-overlay:hover{
    opacity: 1;
}
.image-overlay:hover ~ .hover-warn-low{
    display: none;
}
.image-overlay:hover ~ .hover-warn-high{
    display: none;
}
.image-overlay:hover > * {
    transform: translateY(0);
}
.image-title{
    color: #62a8f7;
    margin-left: 1.5em;
    margin-right: 1.5em;
    font-size: 4vh;
    font-weight: bold;
    margin-top: 0.5em;
}
.image-description{
  font-size: 2em;
  margin-top: 0.4em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.github-section {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
}

.github-section h2{
  color:#fff
}

.github-section img {
  border-radius: 50%;
}

.badge, .profile-link, .repo-link{
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #0366d6;
  font-weight: bold;
}
.profile-name, .profile-bio {
    color:#fff;
}
.repo-link{
    text-align: center;
}

.repo-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 15px;
  background-color: #f9f9f9;
  text-align: left;
}

.repo-card h3 {
  margin: 0;
}

.contact-container{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 10px;    
    width: 75%;
    height: auto;
}
.contact-container p{
    font-size: large;
    color: #ccc;
}
h1.contact-text{
    background-color: #ff9500;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
}
.patreonlogo{
    height: 60px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}
.contact-email-text{
    color: #ccc;
    text-align: center;
}
.contact-email{
    color: #ccc;
    text-align: center;
}
form {
  background-color: #161515; 
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #fff; 
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc; 
  border-radius: 4px;
  background-color: #fff; 
  color: #333;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #333; 
  color: #fff; 
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #555; 
}
.market-container{
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}
.market-logo{
    cursor: pointer;
    height:60px;
    width: auto;
    margin: 10px;
}
.market-logo-twitter{
    cursor: pointer;
    height:65px;
    width: auto;
    margin: 10px;
    max-height: 100%;
}
.logo-bottom{
    line-height: 50px;
    height: 15px;
    width: auto;
}
.copyright{
    background-color: #161515;
    width: 100%;
    height: auto;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}
@media (max-width: 960px){
    .header-section{
        height: 60vw;
    }
}
@media (max-width: 720px){
    .header-section{
        height: 50vh;
    }
    video{
        height: 50%;
        max-height: 400px;
    }
    .toggle-button{
        display: flex;
    }
    nav{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links{
        display: none;
        width: 100%;
    }
    .navbar-links ul{
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links li a{
        border-radius: 6px;
    }
    .navbar-links ul li a{
        line-height: 50px;
        font-size: 25px;
        padding: 9px 30px;
    }
    .navbar-links.active{
        display: flex;
    }
    .presentation h1{
        font-size: 1.7em;
    }
    .games-container{
        flex-direction: column;
    }
    .member{
        height: 200px;
        width: 200px;
    }
    .image-description{
        font-size: 1.3em;
    }
}
@media (max-width: 480px){
    .hover-warn-high{
        display: none;
    }
    .hover-warn-low{
        display: inherit;
    }
}
@media (max-width: 280px){

    .presentation h1{
        font-size: 1.3em;
    }
}