
/*Main section*/

h1 {
    font-family: "Rokkitt", sans-serif;
    color: #38332B;
    font-size: 2.7rem;
    text-align: center;
    margin-top: 20px;
    overflow: hidden;
}

p.mono {
    letter-spacing: 5px;
    font-size: 1.2rem;
    text-align: center;
    font-family: "Urbanist", Arial, Helvetica, sans-serif;
    font-weight: 200;
    margin-top: -13px;
    text-shadow: 2px 2px rgba(255, 255, 255, 1);
    padding: 0 0;
}


p {
    padding: 0 30px 15px 30px;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.link {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.visit-link {
    background-color: #efefe7;
    padding: 14px 32px;
    border-radius: 7px;
    color: black;
    border: 2px solid transparent;
    transition: all 400ms ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.visit-link:hover {
    background-color: #fdfdfc;
    transform: translate(1px,-1px);
}

/*Video*/
.video-container {
    max-width: 900px;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

video {
    max-width: 100%;
    /* height: auto; */
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

video.controls {
    display: none;
}

#progress-bar {
    width: 100%;
    height: 10px;
    background: white;
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
    border-radius: 0 0 4px 4px;
}

#progress {
    width: 0%;
    height: 100%;
    background: rgb(56, 51, 43, 0.5);
    transition: width 0.1s linear;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 768px) {
    video.controls {
        display: block;
    }
}

@media screen and (max-width: 431px) {
    h1 {
        font-size: 2.3rem;
        margin-top: 10px;
    }
    
    p.mono {
        font-size: 1rem;
    }
    
    p {
        padding: 0 20px 15px 20px;
        font-size: 15px;
        max-width: 100%;
    }
    
    .link {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    .visit-link {
        padding: 10px 20px;
        font-size: 15px;
    }

    .video-container {
        padding: 20px 0;
    }
} 