* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: container; 
    object-position: center; 
}

.social-icons {
    position: absolute;
    top: 10px; 
    right: 10px; 
    z-index: 2;
    display: flex;
}

.instagram-icon i {
    font-size: 40px; 
    color: #E1306C; 
    transition: transform 0.3s ease; 
}

.instagram-icon i:hover {
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    .instagram-icon i {
        font-size: 30px; 
    }
}
