:root {
    --pink: #d1bc00;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
}
.logo:hover {
    opacity: 0.5;
}

#star{
    padding-top: 40px;
    font-size: 12px;
}

#subject{
    display: none;
}

.loading-page {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 1rem;
    background-image: url("../assets/Untitled.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

#svg {
    stroke-width: 3px;
    stroke: #ffffff;
    fill-opacity: 0;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    /*animation: draw 8s ease forwards;*/
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.loading-logo-name {
    color: #fff;
    font-size: 30px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-left: 20px;
    opacity: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

.heading {
    text-align: center;
    font-size: 4rem;
    color: #fff;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.heading span {
    color: var(--pink);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: 0.9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: var(--pink);
}

section {
    padding: 2rem 9%;
}
form input,
textarea {
    font-size: 15px;
    margin-bottom: 10px;
    border-radius: 1rem;
    border: 2px solid;
    border-color: #494949;
    padding-left: 10px;
    padding-right: 10px;
}
form input {
    width: 70%;
    height: 50px;
}

form textarea {
    width: 70%;
    resize: none;
    height: 300px;
    padding-top: 5px;
}

.login-popup{
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
    background: #0000008a;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.login-popup iframe{
    opacity: 1;
    width: 600px;
    height: 900px;
    background: transparent;
}
.acc-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 85px;
  right: 140px;
  border-radius: 0px 0px 9px 9px;
  width: 200px;
  padding: 15px;
  background: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  text-align: center;
  transition: 1s ease-in;
  z-index: -1;
  animation: acc-dropdown 0.2s ease;
  align-items: center;
}
.acc-dropdown a{
    display: flex;
    font-size: 2rem;
    align-items: center;
    justify-items: center;
    padding: 5px 1.5rem;
    color: #fff;
}
.acc-img{
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.acc-dropdown i{
    font-size: 14px;
    padding-left: 10px;
    color: #fff;
}
.acc-dropdown a:hover{
    color: black;
    border-radius: 0.5rem;
    background-color: #fff;
    border: 0.1rem var(--pink);
    font-size: 2.2rem;
}
.acc-dropdown a:hover i{
    color: #000;
}
.acc-dropdown p{
    font-size: 12px;
    color: #fff;
    margin-bottom: 8px;
}

@keyframes acc-dropdown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hidden {
  display: none;
}
.submit-btn input {
    width: 50%;
}
.submit-btn input:hover {
    color: #fff;
    background-color: var(--pink);
    border-color: #fff;
}

footer {
    position: absolute;
    position-anchor: bottom;
    background: #000000;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
}
footer a {
    text-decoration: none;
    color: #ffffff;
    padding-left: 5px;
    padding-right: 5px;
}
footer a:hover {
    color: black;
    border-radius: 0.5rem;
    background-color: #fff;
    border: 0.1rem var(--pink);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 12px 8px rgba(0, 0, 0, 0.3);
}

.primary .logo img {
    display: inline-block;
    margin-top: -7px;
    position: relative;
    right: 20px;
    width: 50px;
}

header .logo {
    position: relative;
    display: flex;
    margin-top: 1px;
    font-size: 3rem;
    color: #ffffff;
    font-weight: bolder;
}

header .logo span {
    color: var(--pink);
}
.primary .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #fff;
}
.primary .navbar a:hover {
    color: black;
    border-radius: 0.5rem;
    background-color: #fff;
    border: 0.1rem var(--pink);
    font-size: 2.2rem;
}

header .icons a {
    visibility: visible;
    font-size: 2.5rem;
    display: block;
    color: #fff;
    margin-left: 1.5rem;
}

header .icons a:hover {
    color: var(--pink);
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border: 0.1rem solid rgba(0, 0, 0, 0.3);
    display: none;
}

.secondary{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 12px 8px rgba(0, 0, 0, 0.3);

}

.secondary .logo img{
    display: inline-block;
    margin-top: -7px;
    position: relative;
    right: 20px;
    width: 50px;
}

.home {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-image: url();
    background-position: center;
    box-shadow: 0 6px 7px #000000;
    animation: bgChange 60s linear infinite;
}

.home .content {
    max-width: 65rem;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.8);
}

@keyframes bgChange {
    0% {
        background-image: url('../assets/2024-04-27_23.34.11.png');
    }
    20% {
        background-image: url('../assets/2024-04-27_23.34.11.png');
    }
    25% {
        background-image: url('../assets/2024-04-27_23.34.04.png');
    }
    45% {
        background-image: url('../assets/2024-04-27_23.34.04.png');
    }
    50% {
        background-image: url('../assets/2024-02-17_16.19.23.png');
    }
    70% {
        background-image: url('../assets/2024-02-17_16.19.23.png');
    }
    75% {
        background-image: url('../assets/2024-04-23_20.33.52.png');
    }
    100% {
        background-image: url('../assets/2024-04-23_20.33.52.png');
    }
}

.home .content h3 {
    position: relative;
    left: 20px;
    right: 20px;
    font-size: 6rem;
    margin-right: 30px;
    color: #252525;
}

.home .content span {
    position: relative;
    left: 20px;
    right: 20px;
    font-size: 3.5rem;
    color: var(--pink);
    padding: 1rem 0;
    margin-right: 30px;
    line-height: 1.5;
}

.home .content p {
    position: relative;
    left: 20px;
    right: 20px;
    margin-right: 30px;
    font-size: 1.5rem;
    color: #333;
    padding: 1rem 0;
    line-height: 1.5;
    text-transform: none;
}

.home .content a {
    position: relative;
    left: 15px;
    right: 20px;
    margin-right: 30px;
}

.icons-container {
    background: #fcff33e1;
    display: inline-block;
    flex-wrap: wrap;
    width: 100%;
    gap: 1.5rem;
    padding-bottom: 5rem;
}
.icons-box {
    display: flex;
    gap: 1.2rem;
}
.icons-container .heading {
    position: relative;
    background: #000;
    box-shadow: 0 6px 7px #000000;
    border-radius: 6px;
}

.icons-container a {
    color: var(--pink);
    text-decoration: underline;
}

.icons-container .icons {
    position: relative;
    background: #000000;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1 1 25rem;
    top: 5px;
    margin-top: 15px;
    border-radius: 0.5rem;
}

.icons-container .icons img {
    height: 5rem;
    margin-right: 2rem;
}

.icons-container .icons h3 {
    color: #7c8097;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.icons-container .icons span {
    color: #ffffff;
    font-size: 1.3rem;
}



.news{
    min-height: 400px;
}
.news .heading{
    border-radius: 6px;
    box-shadow: 0px 6px 7px var(--pink);
    background: #000;
    color: #fff;
}
.blog-container{
    display: grid;
    gap: 20px;
    width: 100%;
    padding: 0 20px 0 20px;
    justify-self: center;
    text-align: center;
}
.blog-container .btn{
    min-width: 400px;
    justify-self: center;
    background: #1a1a1a;
    color: #fff;
    margin-top: -10px;
    border: 2px solid var(--pink);
}
.blog-container .btn:hover{
    background: #fff;
    color: var(--pink);
    border: 2px solid #000;
}
.blog-container .blog-entry{
    display: flex;
    width: 100%;
    height: 275px;
    border-radius:6px;
    overflow: hidden;
    background: #1a1a1a;
    text-align: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 2px 6px 5px #000;
}
.blog-entry iframe{
    padding: 15px 30px 15px 30px;
    width: 100%;
    height: 100%;
}
.blog-entry:hover iframe{
    transform: translateX(-100%)
}
.blog-entry:hover p{
    transform: translateX(-25px);
    color: var(--pink);
}
.blog-entry:hover .weiterbtn{
    opacity: 1;
    color: var(--pink);
}
.blog-entry p{
    padding-right: 15px;
    z-index: 2;
    font-size: 30px;
    color: #fff;
}
.weiterbtn{
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transform: translateX(-50%);
    left: 50%;
    right: 50%;
    width: 250px;
    margin: auto;
}



.news-blog-main-frame{
    display: flex;
    position: relative;
    background: #1a1a1a;
    min-height: 1275px;
}
.news-blog-main-frame .news-blog-bar{
    position: relative;
    display: block;
    background: #1a1a1a;
    border: 2px solid #4b4b4b;
    justify-items: center;
    margin: 20px 0px -3px 0px;
    padding-top: 120px;
    width: 500px;
}
.blog-creator{
    text-align: center;
    box-shadow: 2px 2px 3px #000;
    background: #fff;
    width: 250px;
    border-radius: 9px;
    padding: 40px 20px 40px 20px;
}
.blog-creator h1{
    font-size: 30px;
    color: #1a1a1a;
}
.blog-creator span{
    font-size: 22px;
    color: var(--pink);
}
.news-blog-bar img{
    border-radius: 50%;
    height: 150px;
    width: 150px;
}
.news-blog-main-frame iframe{
    width: 100%;
    height: 100%;
    padding: 120px 30px 120px 30px;
    height: inherit;
}
.blog-nav-bar{
    display: flex;
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.blog-nav-bar .nxt{
    width: 100%;
    margin: 0px 30px 0 5px;
    padding: 5px;
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
    border: 2px solid var(--pink);
}
.blog-nav-bar .nxt:hover{
    transform: translateX(5px);
    transition: 0.25s ease-in;
    background: #fff;
    color: #000;
    border: 2px solid #000;
}
.hide{
    opacity: 0;
}
.blog-nav-bar .prv{
    width: 100%;
    margin: 0px 5px 0 30px;
    padding: 5px 5px 5px 5px;
    border-radius: 20px;
    font-size: 18.5px;
    color: #fff;
    border: 2px solid var(--pink);
}
.blog-nav-bar .prv:hover{
    transform: translateX(-5px);
    transition: 0.25s ease-in;
    background: #fff;
    color: #000;
    border: 2px solid #000;
}
.blogcount{
    display: flex;
    color: #fff;
    font-size: 22px;
    justify-self: center;
}





.products {
    min-height: 100vh;
    background: #000;
}
.products .heading {
    border-radius: 6px;
    box-shadow: 0px 6px 7px var(--pink);
}
.products .cards {
    position: relative;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.products .heading {
    background: #fff;
    color: #000;
}

.product-card {
    border-radius: 5px;
    text-align: left;
    position: relative;
    min-height: 450px;
    background: #fff;
    width: 600px;
    margin: 20px;
    overflow: hidden;
    border: 1px solid #fff;
}
.product-card a {
    text-decoration: none;
    color: #000;
}
.product-card:hover {
    box-shadow: 5px 5px 5px var(--pink);
}
.product-card:hover .product-desc h3 {
    color: var(--pink);
}

.product-card:hover .card-footer a {
    transform: scale(1.1, 1.1);
}

.product-img img {
    width: 100%;
    height: 270px;
}
.product-card .break {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 45px;
    background: #000;
}

.product-card .card-footer {
    padding: 2px;
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.card-footer .icons {
    position: absolute;
    top: 5%;
    right: 0px;
    font-size: 16px;
    color: #000;
}

.card-footer .info {
    position: relative;
    left: 5px;
    font-size: 15px;
}

.product-desc {
    font-weight: 500;
    max-height: 130px;
    padding: 16px;
    overflow-y: scroll;
}
.product-desc::-webkit-scrollbar {
    scroll-behavior: smooth;
}

.product-desc h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.product-desc p {
    font-size: 18px;
    line-height: 1.3;
}

.team {
    background: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.team .heading {
    background: #000;
    box-shadow: 0 6px 7px #000000;
    border-radius: 6px;
}

.team-card {
    margin-left: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 6px;
    display: inline-block;
    width: 35rem;
    box-shadow: 0 6px 6px #000000;
    color: #fff;
}
.team-card:hover {
    background: #fff;
    color: #000;
    transform: translateY(-10px);
    outline: 2px solid #000;
    box-shadow: 0 12px 12px #000;
}
.team-card img {
    border-radius: 100%;
    margin-top: 60px;
    width: 132px;
    height: 128px;
}
.team-card h1 {
    font-size: 35px;
}
.team-card .title {
    font-size: 20px;
    color: #7c8097;
}
.team-desc {
    font-size: 14px;
    margin-left: 65px;
    margin-right: 65px;
    margin-bottom: 40px;
    color: #b7b8c0;
}
.team-card:hover .title {
    color: var(--pink);
}
.team-card:hover .team-desc {
    color: #4b4b4b;
}

#kontakt h1 span {
    color: #fff;
}

#inactive-card *{
    cursor: not-allowed;
}

.game-container{
    position: relative;
    width: 100%;
    min-height: 1000px;
    text-align: left;
}
.game-container h3{
    font-size: 24px;
}
.game-overview-container {
    width: 100%;
    min-height: fit-content;
    background: #1a1a1a;
    display: flex;
    border-radius: 5px;
}
.game-media video{
    max-width: 600px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.game-media{
    width: 70%;
    display: block;
    justify-items: center;
}
.game-media img{
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px;
}
.game-media .media-scroll{
    position: relative;
    display: flex;
    width: 100%;
    height: 100px;
    padding: 10px;
    gap: 10px;
    overflow-x: scroll;
}
.thumbnail{
    position: relative;
}
.thumbnail .video-icon{
    position: absolute;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: -2px;
}
.thumbnail img{
    height: 100%;
    cursor: pointer;
}
.thumbnail video{
    height: 100%;
    cursor: pointer;
}
.game-overview-info{
    margin-left: 15px;
    width: 30%;
    display: block;
}
.game-overview-info img{
    width: 100%;
}
.game-overview-desc{
    position: relative;
    color: #fff;
    font-size: 15px;
    top: 5px;
}
.game-info-top{
    margin-top: 55px;
}
.game-overview-info-container p{
    font-size: 13px;
    color: #6e6e6e;
}
.game-overview-info-container p span{
    margin-left: 15px;
    font-size: 15px;
    color: #fff;
}
.game-overview-info-container p a{
    margin-left: 15px;
    font-size: 15px;
    color: var(--pink);
}
.game-info-container{
    position: relative;
    display: flex;
    height: 100%;
    margin-top: 20px;
    min-height: 700px;
}
.game-left-container{
    width: 25%;
}
.game-right-container{
    width: 75%;
    margin-right: 20px;
}
.game-download-container{
    position: relative;
    display: flex;
    background: #1a1a1a;
    opacity: 0.95;
    min-height: 90px;
    border-radius: 6px;
}
.game-download-container h3{
    color: #fff;
    margin-left: 30px;
    width: 76%;
    transform: translateY(25%);
}
.download-btn-box{
    position: relative;
    width: 22%;
    align-self: center;
    display: block;
}
.download-btn-box .download-btn{
    position: absolute;
    text-align: center;
    font-size: 22px;
    width: 100%;
    right: 15px;
    border-radius: 6px;
    color: #000000;
    background: #aaff0d;
    border: 3px solid #000
}
.download-btn-box .os-icons{
    text-align: right;
    padding-right: 15px;
    width: 100%;
    margin-bottom: 5px;
    gap: 15px;
}
.os-icons img{
    width: 30px;
    height: auto;
}
.game-news{
    margin-top: 75px;
}
.game-news h3{
    font-size: 22px;
}
.game-news h3 a{
    margin-left: 100%;
    font-size: 22px;
}
.game-news .spacer{
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}
.game-news-container{
    min-height: 300px;
}
.game-info{
    margin-top: 75px;
}
.game-info h3{
    font-size: 22px;
}
.game-info .spacer{
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}
.game-info-box{
    margin-top: 10px;
    min-height: fit-content;
    background: #1a1a1a;
    border-radius: 6px;
}
.game-info-box a{
    color: var(--pink);
    font-size: 18px;
}
.game-info-box a span{
    color: #fff;
    font-size: 14px;
}
.game-info-box p{
    padding: 10px;
    color: #fff;
    font-size: 18px;
}
.game-info-box img{
    padding: 20px;
    width: 100%;
}
.game-specs{
    margin-top: 75px;
}
.game-specs h3{
    font-size: 22px;
}
.game-specs .spacer{
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}
.game-specs-container{
    margin-top: 10px;
    display: flex;
    min-height: 200px;
}
.game-min-specs{
    width: 100%;
    margin-right: 10px;
}
.game-min-specs h3{
    font-size: 12px;
    color: #616161;
}
.game-opt-specs{
    width: 100%;
}
.game-opt-specs h3{
    font-size: 12px;
    color: #616161;
}
.game-specs-container p{
    color: #000000;
    font-size: 15px;
}
.game-specs-container span{
    color: #616161;
    font-size: 15px;
    display: flex;
}
.game-specs-container span p{
    padding-left: 10px;
}
.game-tag-container{
    background: #1a1a1a;
    border-radius: 6px;
    min-height: 100px;
}
.game-tag-container .game-tag{
    position: relative;
    justify-items: center;
    width: 95%;
    margin: 5px;
    top: 5px;
    display: flex;
    background: #ffffff;
    opacity: 0.95;
    padding: 2px;
}
.game-tag img{
    width: auto;
    height: 25px;
    background: #1a1a1a;
}
.game-tag p{
    align-self: center;
    padding-left: 15px;
    font-size: 18px;
}

.wartung-container {
    width: 100vw;
    height: 100vw;
    background-image: url("../assets/Untitled.png");
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}
.wartung-container .logo {
    width: 120px;
    padding: 20px 0;
    cursor: pointer;
}
.wartung-content {
    top: 25%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
}
.wartung-content p {
    font-size: 20px;
    font-weight: 400;
}
.wartung-content h1 {
    font-size: 64px;
    font-weight: 500;
}
.wartung-content h1 span {
    color: var(--pink);
}
.rocket {
    width: 25px;
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 200px;
    animation: rocket 4s linear infinite;
}
@keyframes rocket {
    0% {
        bottom: 50%;
        opacity: 0;
    }
    100% {
        bottom: 105%;
        opacity: 1;
    }
}

.contribute-section {
    position: relative;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 100px;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../assets/2024-04-27_23.34.11.png");
    background-size: cover;
}
.thankyou-section {
    position: relative;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 100px;
    min-height: 100%;
    padding-bottom: 39.5vh;
    justify-content: center;
    align-items: center;
    text-align: center;
/*     margin-bottom: 37.5vh; */
    background-image: url("../assets/2024-04-27_23.34.11.png");
}
.contribute-section .contribute-container {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 2.5vh;
    padding: 2rem;
    min-height: 90vh;
    background: #fcff33e1;
    border-radius: 12px;
    /*box-shadow: 5px 5px 5px #fcff33e1;*/
}
.thankyou-section .thankyou-container {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 2.5vh;
    padding: 2rem;
    min-height: 40vh;
    background: #fcff33e1;
    border-radius: 12px;
    /*box-shadow: 5px 5px 5px #fcff33e1;*/
}
.thankyou-section .mails {
    color: #fcff33e1;
    text-decoration: underline;
}
.thankyou-section .mails:hover {
    color: var(--pink);
}

.submit-btn {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.submit-btn p{
    margin-left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    max-width: 500px;
    margin-bottom: 5px;
}
.submit-btn .captcha {
    position: relative;
    display: fixed;
    opacity: 0;
    z-index: -2;
    top: -210px;
    align-self: center;
    cursor: default;
}
.submit-btn .role-required{
    position: relative;
    display: fixed;
    opacity: 1;
    z-index: -1;
    top: -1300px;
    align-self: center;
    cursor: default;
}
.submit-btn .g-recaptcha {
    justify-self: center;
    margin-top: 10px;
    margin-bottom: 30px;
}
.contribute-container .cardheader {
    width: 100%;
}
.thankyou-container .cardheader {
    width: 100%;
}
.cardheader h3 {
    font-size: 30px;
    color: #fff;
    background: #1a1a1a;
    border-radius: 12px;
    margin: 10px;
    padding: 6px;
}
.contribute-container .welcome {
    padding: 10px;
    font-size: 22px;
    color: #000;
}
.thankyou-container .welcome {
    padding: 10px;
    font-size: 22px;
    color: #000;
}
.contribute-container form {
    position: relative;
    height: 100%;
    width: 100%;
}

.contribute-info {
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    min-height: 80vh;
    padding: 20px 20px 20px 0px;
}
.thankyou-info {
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    min-height: 80vh;
    padding: 20px 20px 20px 0px;
}
.contribute-info h4 {
    color: var(--pink);
    font-size: 22px;
    padding-left: 10px;
    text-align: left;
    margin-bottom: 50px;
}
.thankyou-info h4 {
    color: var(--pink);
    font-size: 22px;
    padding-left: 10px;
    text-align: left;
    margin-bottom: 50px;
}
.contribute-info .error {
    color: #ff0000;
    font-size: 18px;
}
.role {
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    min-height: 22vh;
    padding: 20px;
}
.role h4 {
    color: var(--pink);
    font-size: 22px;
    padding-left: 10px;
    text-align: left;
}
.role p {
    color: #fff;
    font-size: 16px;
    padding-left: 10px;
    text-align: left;
}
.role .list {
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
    padding-top: 5px;
}

.dropdown {
    min-width: 15em;
    position: relative;
    margin: 10px;
}
.dropdown * {
    font-size: 22px;
    box-sizing: border-box;
}
.select {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px #2a2f3b;
    border-radius: 0.5em;
    padding: 1em;
    cursor: pointer;
    transition: background 0.3s;
}
.select-clicked {
    border: 2px var(--pink) solid;
    box-shadow: 0 0 0.8em var(--pink);
}
.select:hover {
    background: #c0c0c0;
}
.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
    transition: 0.3s;
}
.caret-rotate {
    transform: rotate(180deg);
}
.menu {
    list-style: none;
    padding: 0.2em 0.5em;
    background: #3b3b3b;
    border: 1px #272727 solid;
    box-shadow: 0 0 0.5em 1em rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    color: #9fa5b5;
    position: absolute;
    top: 4em;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
    opacity: 0;
    display: none;
    transition: 0.2s;
    z-index: 1;
}
.menu li {
    padding: 0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 0.5em;
    cursor: pointer;
}
.menu li:hover {
    background: #c0c0c0;
    color: #000;
}
.active {
    background: #fff;
    color: #000;
}
.menu-open {
    display: block;
    opacity: 1;
}

/* media */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }

    .home {
        background-position: left;
    }

}

@media (max-width: 1200px) {
    .primary .fa-bars {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .primary #toggler:checked ~ .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .primary .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        background: #3b3b3b;
        border: 0.1rem solid rgba(0, 0, 0, 0.1);
        display: block;
    }

    .home .content h3 {
        font-size: 5rem;
    }

    .home .content span {
        font-size: 2.5rem;
    }

    .icons-container .icons h3 {
        font-size: 2rem;
    }

    .icons-container .icons span {
        font-size: 1.7rem;
    }

    .game-img {
        display: none;
    }
    .game-content-box{
        width: 100%;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin: 0px;
        left: 0px;
    }
    .c{
        display: block;
    }
    .info1{
        margin-left: 0px;
    }

    .contribute-section {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 50px;
    }
    form input,
    textarea {
        font-size: 15px;
        margin-bottom: 5px;
        border-radius: 1rem;
        border: 2px solid;
        border-color: #494949;
        padding-left: 10px;
        padding-right: 10px;
    }
    form input {
        width: 95%;
        height: 40px;
    }

    form textarea {
        width: 95%;
        resize: none;
        height: 300px;
        padding-top: 5px;
    }

    .game-overview-container{
        display: block
    }
    .game-media .media-scroll{
        height: 140px;
    }
    .game-overview-info{
        margin-top: 20px;
        width: 100%;
        margin-left: 0px;
    }
    .game-overview-info-container{
        margin-left: 15px;
    }
    .game-media{
        width: 100%;
    }
    .media-scroll .thumbnail{
        height: 100px;
    }
    .game-info-container{
        display: block;
    }
    .game-right-container{
        width: 100%;
    }
    .game-specs-container{
        display: block;
    }
    .game-opt-specs{
        margin-top: 20px;
    }
    .download-btn-box .download-btn{
        font-size: 18px;
    }

    .blog-entry p{
        visibility: collapse;
        padding-right: 0px;
    }

    .news-blog-main-frame{
        display: block;
        position: relative;
        background: #1a1a1a;
    }

    .news-blog-main-frame .news-blog-bar{
        position: relative;
        display: block;
        background: #1a1a1a;
        margin: 20px 0px 0px 0px;
        padding-top: 100px;
        padding-bottom: 10px;
        width: 100%;
    }
    .creator-desc{
        padding-left: 10px;
    }
    .blog-creator h1{
        color: #000;
        font-size: 20px;
    }
    .blog-creator span{
        font-size: 12px;
    }

    .news-blog-bar img{
        height: 50px;
        width: 50px;
    }
    .blog-creator{
        box-shadow: 2px 2px 3px #000;
        border-radius: 35px;
        background: #fff;
        display: flex;
        text-align: left;
        padding: 7px 50px 7px 10px;
        margin-right: auto;
        margin-left: 25px;
        margin-top: 30px;
    }
    .news-blog-main-frame iframe{
        padding: 0px 30px 120px 30px;
    }
    .blog-nav-bar{
        margin: -40px 0 -35px 0;
    }
    .blogcount{
        display: flex;
        margin-bottom: 25px;
        font-size: 16px;
    }

}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading {
        font-size: 3rem;
    }
}
