
/* Main Text */
body{
    background: #181414;
    color: white;
}
.text {
    padding: 15px;
    width: 80%;
    margin-top: 80px;
    font-size: 11vh;
    text-align: left;
}
.lowertext{
    width: 80%;
    top: 0;
    height: 40vh;
    font-size: 4vh;
    padding: 15px;

}
/* Layout */
.container {
    width: 100%;
    height: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}

.video {
    flex: 0 0 100%;
}

.video video {
    width: 100%;
    height: auto;
}

p {
    padding-top: 18px;
    flex: 0 0 48%;
    font-size: 5vh;
    text-align: right;
    
}

.image-wrapper {
    width: 45%;
}
/* Font */
@font-face { 
    font-family: ClashdisplayL; 
    src: url('ClashdisplayL.OTF'); 
}
/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    font-family: "ClashdisplayL", sans-serif;
    overflow-x: hidden;
    text-transform: uppercase;
}


/* Loading Page */
#loading-page {
    background: #181818;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.loading-image {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}
.button{
    top: 0;
    padding: 4px;
    border: #FFBF00;
    background-color: #FFBF00;
    border-radius: 4px;
    color: white;
    font-size: 5vh;
    font-family: "Clashdisplay";
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateX(280%); /* Keeps it centered */
    cursor: pointer;
    z-index: 1000;

}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #FFBF00;
    border-top: 5px solid #b88a02;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.text-wrapper {
    opacity: 0;
    transition: opacity 0.6s ease, transform 1s ease;
}

.text-wrapper.from-left {
    transform: translateX(-150px);
}

.text-wrapper.from-right {
    transform: translateX(150px);
}

.text-wrapper.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .text {
        width: 100%;
        font-size: 5vh;
        padding-top: 0;
    }
    .lowertext{
        height: auto;
        width: 100%;
        font-size: 3vh;
    }
    .button {
        font-size: 3vh;  /* Adjust size for mobile */
        width: auto; 
        text-decoration: none;
        transform: none;  /* Remove translate */
        margin: 20px auto; /* Center button */
        display: flex; /* Ensure visibility */
    }
    p {
        font-size: 2.3vh;
        padding-top: 0;
        flex: 0 0 0;
        text-align: center;
    }

    .container {
        z-index: 1000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .image-wrapper {
        width: 80%;
        margin-bottom: 20px;
    }
}
@media screen and(min-width: 769px){
p{
    font-size: 60px;
}
}