* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    
    font-family: "Baskervville", serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.55;
    color: #fff;
    background: #000;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: 600px;
    width: 100%;
}
h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.5s forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
p {
    font-size: 38px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.video-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    z-index: -10;
}
.bottom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, transparent, #000);
    pointer-events: none;
}
@media (max-width: 600px) {
    body {
        font-size: 18px;
        padding: 30px 20px;
        align-items: flex-start;
        padding-top: 25vh; 
    }
    
    .container {
        margin-top: 0;
    }
    
    h1 {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    p {
        font-size: 18px;
    }
    
    .video-container {
        width: 100%;
        height: auto;
        left: 0;
        transform: translateX(0);
    }
    
    .bottom-video {
        height: auto;
    }
    
    .video-gradient {
        display: none; 
    }
}