@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    background-color: #15151c;
    color: white;
    width: 100%;

    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

header {
    background-color: #00e1ff00;
}

.frontpageBox {
    background: #1d1d27;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 255, 0);
    box-sizing: border-box;
    padding: 30px;
    margin-top: 20px;
}

.frontpageBox li {
    list-style-type: none;
}

/* Main Page */

content#mainPage .introduction {
    text-align: center;
    margin-bottom: 20%;
    margin-top: 6%;
}

content#mainPage footer {
    text-align: center;
    margin-bottom: 0%;
    margin-left: 1%;
}

@media screen and (max-width: 767px) {
    content#mainPage .introduction {
        text-align: center;
        margin-bottom: 20%;
        margin-top: 6%;
        margin-left: 20%;
    }
    
    content#mainPage .frontpageBox {
        width: 100%;
        margin-left: 18%;
    }

    .introduction p {
        text-align: center;
    }

    content#mainPage footer {
        text-align: center;
        margin-bottom: 1%;
        margin-left: 22%;
    }
}

/* ----------------------------- */


/* Partnerships */

content#partnerships .introduction {
    text-align: center;
    margin-left: 0%;
    margin-bottom: 20%;
    margin-top: 0%;
}

content#partnerships #textinformations h1 {
    text-align: center;
    margin-left: -85%;
    margin-top: 10%;
}

content#partnerships #textinformations .partnerShipInfo {
    text-align: center;
    margin-left: -39%;
    width: 90%;
}

content#partnerships #textinformations footer {
    width: 100%;
    text-align: center;
    margin-left: -40%;
    max-width: 100%;
}

content#partnerships .frontpageBox {
    width: 100%;
    margin-left: -42%;
}

#scrollButton {
    background-color: #ffffff00;
    margin-top: 8%;
}

content#partnerships #textinformations .partnerShipInfo {
    text-align: center;
}

@media screen and (max-width: 767px) {

    content#partnerships .introduction {
        text-align: center;
        margin-left: 25%;
        margin-bottom: 25%;
        margin-top: 10%;
        width: 70%;
    }

    content#partnerships .introduction img.logo {
        width: 100%;
    }

    content#partnerships #textinformations h1 {
        text-align: center;
        margin-left: -16%;
        margin-top: 12%;
    }

    content#partnerships #textinformations .partnerShipInfo {
        text-align: center;
        margin-left: -20%;
        width: 90%;
    }

    content#partnerships #textinformations footer {
        width: 100%;
        text-align: center;
        margin-left: -24%;
        max-width: 100%;
    }

    content#partnerships #textinformations {
        width: 60%; 
        margin-left: 0%;
        margin-top: 10%;
    }

    content#partnerships .frontpageBox {
        width: 100%;
        margin-left: -22.5%;
    }
    content#partnerships .frontpageBox img {
        width: 100%; 
    }
}

content#partnerships #textinformations {
    width: 60%; 
    margin-left: 46%;
    margin-top: 10%;
}

content#partnerships #textinformations h1 {
    text-align: center;
}

/* ----------------------------- */



/*content {
    position: absolute;
    margin-left: 78px;
}*/

/*footer {
    position: static;
    bottom: 0;
    text-align: center;
}*/

a {
    text-decoration: none;
    color: #fff;
}

/* Selections */

.selections {
    background: #1d1d27;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 255, 0);
    box-sizing: border-box;
    padding: 15px;
    margin-top: 20px;

    text-align: center;
}

content#selections h1.title {
    margin-top: 20px;
    text-align: center;
    margin-left: 0%;
}

content#selections footer {
    margin-left: 42.5%;
}

content#selections .NormalSelections a {
    color: black;
}

@media screen and (max-width: 767px) {
    .selections {
        margin-left: 16%;
        width: 100%;
    }

    content#selections h1.title {
        margin-top: 20px;
        text-align: center;
        margin-left: 30%;
    }

    content#selections footer {
        margin-left: 32%;
    }
}

.showSelectionWindow {
    color: #000000;
}

button {
    border-radius: 13px;
    border: 1px solid rgba(0, 0, 255, 0);
    background-color: #ffffffd2;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
}

button:hover {
    background-color: #949393d2;
    transition: all 0.4s ease;
}

.NormalSelections ul {
    display: inline-block;
    margin: 0 10px;
    background-color: #202033;
    padding: 25px;
    border-radius: 5px;
}

.NormalSelections li {
    list-style-type: none;
    margin-right: 0;
}

.NormalSelections {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    background-color: #191924;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    max-height: 90vh;
    overflow: auto;
    display: none;
    width: 70%;

    animation: fadeInAnimation ease 0.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
  
@media screen and (max-width: 767px) {
    .NormalSelections {
      width: 80%;
      margin: 0 auto;
      max-height: 90vh;
      left: 60%;
    }
}

#closeSelectionWindow {
    display: block;
    margin-top: 10px;
    margin-left: 78px;
    border-radius: 23px;
    float: center;
    margin: auto;
    color: #000000;
}

button#closeSelectionWindow {
    margin-bottom: 10px;
    border-radius: 13px;
}

/* ----------------------------- */

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none; /* Optionally hide the element after fading out */
    }
}

.fade-out {
    animation: fadeOutAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

/* Customize the scrollbar */

::-webkit-scrollbar {
    width: 6px;
}
    
::-webkit-scrollbar-track {
    background: #17171f;
}
    
::-webkit-scrollbar-thumb {
    background: #25253c;
}
    
::-webkit-scrollbar-thumb:hover {
    background: #191924;
}

/* ----------------------------- */


/* Account Overview/Settings */

content#accountsettings h1.title {
    text-align: center;
}

content#accountsettings button {
    background: #1d1b31;
    padding: 10px;
    font-size: medium;
}

content#accountsettings button:hover {
    background: #191921;
    transition: all 0.4s ease;
}

#profilePicture {
    margin-left: -35%;
    margin-top: 5%;
    text-align: center;
    border: 1px solid rgba(0, 0, 255, 0);
}

.informations {
    background: #1d1d2700;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 255, 0);
    box-sizing: border-box;
    padding: 30px;
    margin-top: -25%;
    margin-left: 35%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    content#accountsettings h1.title {
        text-align: center;
        margin-left: 15%;
    }

    .informations {
        background: #1d1d2700;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 255, 0);
        box-sizing: border-box;
        padding: 30px;
        margin-top: 10%;
        left: 0%;
        margin-left: 15%;
        text-align: center;
    }

    #profilePicture {
        margin-left: 15%;
        margin-top: 20%;
        text-align: center;
        border: 1px solid rgba(0, 0, 255, 0);
    }
}

/* ---------------------------------------- */


/* Contact Us */

content#contactUs h1#title {
    margin-top: 20px;
    margin-left: 0%;
    text-align: center;
}

content#contactUs div.frontpageBox {
    margin-left: 0%;
}

content#contactUs footer {
    position: absolute;
    left: 43%;
    margin-bottom: 0%;
}

content#contactUs button {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 255, 0);
    background-color: #ffffffd2;
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
    margin-top: 5%;
}

content#contactUs button a {
    color: black;
}

content#contactUs button:hover {
    background-color: #949393d2;
    transition: all 0.4s ease;
}

@media screen and (max-width: 767px) {
    content#contactUs h1#title {
        margin-top: 20px;
        margin-left: 23%;
        text-align: center;
    }

    content#contactUs div.frontpageBox {
        margin-left: 17%;
        width: 100%;
    }

    content#contactUs footer {
        margin-left: -10%;
    }
}

/* ---------------------------------------- */

/* Payment Methods */

.buyButton {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 255, 0);
    background-color: #ffffffd2;
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
    margin-top: 10%;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

content#paymentMethodSelect #textinformations {
    width: 100%;

    border: 1px solid rgba(0, 0, 255, 0);
    text-align: center;
}

content#paymentMethodSelect #textinformations img {
    background-color: #191924;
    border-radius: 5px;
    padding: 20px;
    margin-top: 100%;
}

content#paymentMethodSelect #textinformations h1 {
    max-width: 100%;

}

content#paymentMethodSelect #textinformations ul {
    display: inline-block;
    margin: 0 10px;
}

content#paymentMethodSelect #textinformations ul {
    list-style-type: none;
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    content#paymentMethodSelect #textinformations ul {
        display: inline-block;
        margin: 0 10px;
    }
    
    content#paymentMethodSelect #textinformations ul {
        list-style-type: none;
        margin-right: 0;
    }

    content#paymentMethodSelect #textinformations {
        width: 100%;
        margin-left: 0%;
        border: 1px solid rgba(0, 0, 255, 0);
        text-align: center;
    }
    
    content#paymentMethodSelect #textinformations img {
        background-color: #191924;
        border-radius: 5px;
        padding: 20px;
        margin-top: 50%;
    }
    
    content#paymentMethodSelect #textinformations h1 {
        max-width: 100%;
        left: 100%;
    }
}