* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    min-height: 100vh;
    background-image: url(../images/1445140.jpg);
    
    background-attachment: fixed;
    padding: 120px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

main::before {
    content: '';
    
}



.social-container {
    display: flex;
    gap: 30px;
    
}

.social {
    background: rgba(24, 24, 24, 0.301);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social:hover {
    transform: translateY(-5px);
}


.title-container {
    text-align: center;
    margin-bottom: 50px;
}

.title-container > span {
    display: inline-block;
    text-transform: uppercase;
    margin-top: 100px;
    animation: glow 2s ease-in-out infinite;
    font-size: clamp(50px, 5vw, 40px);
    font-family: "Designer", sans-serif;
    position: relative;
    bottom: 100px;
    text-shadow: 1px 1px 10px black;
    letter-spacing: 2px;
}

@keyframes glow {
    0%, 90% {
        color: #111;
    }
    0%, 100% {
        color: #FFF;
        text-shadow: 0 0 10px #0652DD,
                     0 0 50px #0652DD,
                     0 0 100px #0652DD;
    }
    
    
}

.title-container > span:nth-child(2) { animation-delay: 0.25s; }
.title-container > span:nth-child(3) { animation-delay: 0.5s; }
.title-container > span:nth-child(4) { animation-delay: 0.75s; }
.title-container > span:nth-child(5) { animation-delay: 1s; }
.title-container > span:nth-child(6) { animation-delay: 1.25s; }
.title-container > span:nth-child(7) { animation-delay: 1.5s; }

.social p {
    color: #fff;
    font-family: "Roboto";
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgb(135, 135, 234);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social a:hover {
    background: rgb(115, 115, 214);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(135, 135, 234, 0.3);
}

.social i {
    font-size: 20px;
}


.social:nth-child(1) i { 
    color: #E4405F; 
} /* Instagram */
.social:nth-child(2) i { 
    color: #25D366; 
}
.social:nth-child(3) i { 
    color: #FF0000; 
}

@media (max-width: 801px) {
    .title-container > span {
        position: relative;
        bottom: 0;
    }
    .title-container{
        margin-bottom: 0px;
    }
    .social-container {
        padding: 100px 15px 30px;
        flex-direction: column;
        bottom: 0;
    }

    .social {
        padding: 20px;
    }

    .social h2 {
        font-size: 24px;
    }

    .social p {
        font-size: 14px;
    }

    

    
}

@media (max-width: 480px) {
    main {
        padding: 90px 10px 20px 10px;
        width: 100% !important;
        max-width: 480px!important;
        left: 0%;
    }

}