* {
    margin: 0;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
    display: block;
}

body {
    background-color: black;
    width: auto;
    height: auto;
}

.clicklink {
    text-decoration: none;
}

#promophoto {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#logo-container {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1000;
    text-align: center;
    background: linear-gradient(to bottom, black, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    margin: 0;
    margin-top: 30px;
    padding: 0;
    width: 300px;
    height: auto;
}

#container {
    position: absolute;
    left: 50%;
    top: 55vh;
    transform: translateX(-50%);
    
    width: 80%;
    background: linear-gradient(to bottom, rgba(250,250,255,0.9), rgba(250,250,255,1));
    border-radius: 25px 25px 0px 0px;
    
    padding: 20px;
    
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);

    text-align: center;
}

#promotext {
    display: block;
    width: 45%;
    height: auto;
    margin: auto;
    margin-top: 30px;
}

#where {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 29pt;
    text-align: center;
    color: black;
    margin-top: 50px;
    margin-bottom: 40px;
}

.split-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.split-side {
    flex: 1;
    padding: 20px;
}

.left-side {
    text-align: right;
}

.right-side {
    text-align: left;
}

.about {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24pt;
    color: black;
    margin: 0;
}

.about_detailed {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13pt;
    color: black;
    margin: 0;
}

.datetime {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24pt;
    color: black;
    margin: 0;
}

.action_buy {
    margin-top: 10px;
    margin-left: 20px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22pt;
    border: none;
    border-radius: 5px;
    background-color: #FFD037;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.action_buy:hover {
    background-color: black;
    color: #FFD037;
}

.themechange {
    margin-top: 50px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18pt;
    border: none;
    border-radius: 5px;
    background-color: #262829;
    color: #fbfeff;
    cursor: pointer;
    transition: 0.3s;
}

.themechange:hover {
    background-color: #fbfeff;
    color: #262829;
}

#links {
    margin-top: 25px;
    width: 100%;
    height: auto;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
}

.reference {
    margin: 10px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22pt;
    border: none;
    border-radius: 5px;
}

#instagram {
    background-color: #E9E9E9;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
}

#instagram:hover {
    background-color: hsla(335, 100%, 50%, 0.242);
    color: #ffffff;
}

#facebook {
    background-color: #E9E9E9;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
}

#facebook:hover {
    background-color: hsla(221, 44%, 41%, 0.374);
    color: #ffffff;
}

#tiktok {
    background-color: #E9E9E9;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
}

#tiktok:hover {
    background-color: hsla(178, 90%, 55%, 0.532);
    color: #ffffff;
}

#legal {
    margin-top: 25px;
    width: 100%;
    height: auto;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
}

.legal_info {
    font-family: 'Montserrat', sans-serif;
    font-size: 10pt;
    font-weight: 400;
    color: #808080;
}

.ref_icon {
    width: 25px;
    height: 25px;
}

/* Responsive design */

@media (max-width: 1200px) {
    #promophoto {
        height: 55vh;
    }
    
    #container {
        top: 45vh;
        
        width: 100%;
        background: linear-gradient(to bottom, rgba(250,250,255,1), rgba(250,250,255,1));
        border-radius: 45px 45px 0px 0px;
        
        padding: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
        
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    }

    #where {
        font-size: 50pt;
        margin-top: 80px;
        margin-bottom: 100px;
    }

    #promotext {
        margin-top: 50px;
        width: 80%;
    }

    .split-container {
        text-align: center;
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 100px;
    }
    
    .split-side {
        padding: 0px;
    }

    .left-side {
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .right-side {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .about {
        font-size: 50pt;
    }

    .about_detailed {
        font-size: 28pt;
    }
    
    .datetime {
        font-size: 50pt;
    }

    .action_buy {
        margin-left: 0px;
        padding: 10px 20px;
        font-size: 50pt;
        border-radius: 15px;
    }
    
    .reference {
        font-size: 36pt;
        border-radius: 18px;
    }
    
    .legal_info {
        font-size: 18pt;
    }

    .ref_icon {
        width: 50px;
        height: 50px;
    }
}

/* Dark variation */

@media (prefers-color-scheme: dark) {  
    #container {
        background: linear-gradient(to bottom, rgba(38,40,41,0.9), rgba(38,40,41,1));
    }
    
    #promotext {
        fill: #fbfeff;
    }
    
    #where {
        color: #fbfeff;
    }
    
    .about {
        color: #fbfeff;
    }
    
    .about_detailed {
        color: #fbfeff;
    }
    
    .datetime {
        color: #fbfeff;
    }
    
    .action_buy {
        background-color: #FFD037;
        color: #fbfeff;
    }
}

@media (max-width: 1200px) and (prefers-color-scheme: dark) {
    #container {
        background: linear-gradient(to bottom, rgba(38,40,41,1), rgba(38,40,41,1));
    }
}