*{
    margin: 0;
    padding: 0;
}

body{
    background-image: url(MaintenanceBG.jpg);
    background-size: cover;
}

.hero{
    height: 100dvh;
    display: flex;
    align-items: center;
}
.herocover{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px 80px 0px;
}

.logo{
    width: 70px;
    margin: 0px 0px 35px 0px ;
}

.heading{
    font-family: "Roboto";
    color: white;
    font-size: 55px;
    text-align: center;
    font-weight: 500;
}

.description{
    font-family: "Roboto";
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    width: 40%;
    margin: 10px 0px 30px 0px;
}

.contacthead{
    font-family: "Roboto";
    color: white;
    font-size: 16px;
    text-align: center;
    margin: 0px 0px 5px 0px;
    font-weight: 400;
}


.mail{
    font-family: "Roboto";
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;

}

.socialcard{
    background-color: #d3d3d331;
    height: 55px;
    width: 55px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.socialcard:hover{
    background-color: #d3d3d37c;
    border: 1px solid white;
}


