.logo{
    height: 54px;
    width: 54px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate{
    from {
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    };
}

.hero{
   background-image: url('../hero.jpg'); 
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   height: 50vh;
}

.description{
    background-color: rgba(25, 25, 25,0.8);
    box-shadow: 0rem 0.2rem 0.5rem rgb(25, 25, 25);
    transition: scale 0.50s ease;
}

.description:hover{
    scale: 1.1;
}

h2{
    margin-bottom: 1.5rem;
    text-align: center;
    color: rgb(5, 217, 217);
}

.download-section{
    background-image: url("../guide.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 33vh;
}

.contact{
    background-image: url("../plane.jpg");
    padding: 10vh 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card{
    background-color: rgba(225, 225, 225, 0.5);
    transition: scale 0.50s ease;
}
.card:hover{
    scale: 1.1;
}