.mains{
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 97.5vh;
    width: 100%;
    justify-content: center;
    background-image: url("../images/contact.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    
}

.mains .hero{
    display: flex;
    flex-direction: column;
    height: 60vh;
    border-radius: 40px;
    background: transparent;
    align-items: center;
    border: 2px solid black;
    padding: 70px;
    margin-top: 90px;
    box-shadow: 0px 0px 100px rgb(172, 75, 198)
}
.mains .hero .heading{
    font-size: 7vh;
    letter-spacing: 5px;
    font-weight: bolder;
    font-family: 'Montserrat', sans-serif;
    color: rgb(236, 217, 217);
    pointer-events: none;
    text-decoration: underline;
}
nav:hover{
    box-shadow: 0px 0px 100px rgba(32, 32, 32, 0.5);
}

footer{
    text-align: center;
    background-image: url(../images/contact.png);
    color: white;
    pointer-events: none;
}
footer span{
  color: aqua;
  font-weight: bold;
}


.snow {
        position: fixed;
        width: 100%;
        height: 100%;
        pointer-events: none;
        top: 0;
        left: 0;
    }

    .snowflake {
        position: absolute;
        top: -10px;
        color: white;
        user-select: none;
        opacity: 0.8;
        animation-name: fall, sway;
        animation-timing-function: linear, ease-in-out;
        animation-iteration-count: infinite, infinite;
    }

    @keyframes fall {
        to {
            transform: translateY(110vh);
        }
    }

    @keyframes sway {
        0%, 100% {
            margin-left: 0;
        }
        50% {
            margin-left: 60px;
        }
    }

  
    .snowflake:nth-child(3n) {
        font-size: 12px;
        animation-duration: 10s, 4s;
    }

    .snowflake:nth-child(3n+1) {
        font-size: 16px;
        animation-duration: 14s, 6s;
    }

    .snowflake:nth-child(3n+2) {
        font-size: 20px;
        animation-duration: 18s, 8s;
    }

.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.container .card {
    width: 100%;
    max-width: 300px;
    height: 70px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 20px;
    border-radius: 15px;

    border: 2px solid black;
    background: rgba(255, 255, 255, 0.1);

    cursor: pointer;
    transition: all 0.3s ease;
}
.card .img {
    width: 40px;
    height: 40px;
}

.card .img svg {
    width: 100%;
    height: 100%;
    fill: white;
}
.card .text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    font-family: 'Montserrat', sans-serif;
}
.container .card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 20px rgba(172, 75, 198, 0.7);
}
.card-link {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
}
