body{

    overflow-x: hidden;
    
}


.main-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
}

.floating-element {
    width: 50%;
    height: 400px;
    position: relative;
}

.frame-caption {
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.info-section {
    width: 40%;
    margin-right: 4rem;
    margin-top: -1rem;
}

.info-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.social-links {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links a {
    text-decoration: none;
    color: #222;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {
    width: 30px;
    height: 30px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
}
@media screen and (max-width: 1200px) {
    .main-content {
        padding: 3rem;
    }
    .info-section {
        margin-right: 3rem;
    }
}

@media screen and (max-width: 992px) {
    .main-content {
        padding: 2rem;
    }
    .info-section {
        width: 45%;
        margin-right: 2rem;
    }
    .floating-element {
        width: 55%;
    }
    .info-section h1 {
        font-size: 2.2rem;
    }
    .info-section p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 2rem;
    }
    .info-section, .floating-element {
        width: 100%;
        margin-right: 0;
    }
    .floating-element {
        height: 50vh;
        min-height: 300px;
    }
    .social-links {
        right: 1rem;
    }
}