.main{
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 97.5vh;
    width: 100%;
    justify-content: center;
    background-image: url("../images/home.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    
}

.main .hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    border-radius: 40px;
    background: transparent;
    align-items: center;

}
.main .hero .heading{
    font-size: 7vh;
    letter-spacing: 5px;
    font-weight: bolder;
    font-family: 'Montserrat', sans-serif;
    color: rgb(236, 217, 217);
    pointer-events: none;
}
.main .hero p{
    font-size: 30px;
    color: white;
    font-variant: small-caps;
    font-family: "Oswald", sans-serif;
    pointer-events: none;
}
.hire{
    height: 50px;
    width: 180px;
    border-radius: 70px;
    margin: 20px;
    font-variant: small-caps;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    border: 2px solid white;
    background: transparent;
    color: white;
    box-shadow: 5px 5px 100px rgb(139, 169, 202);
    cursor: pointer;
}
footer span{
  color: aqua;
  font-weight: bold;
}

/* Snow effects background */
.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;
    }