body{
    margin: 0;
    padding: 0;
    font-family: "Signika", serif;

}


.mainbar{
    background-color: #0066B3;
    color: white;
}

.profilebar{
display: flex;
align-items: center;
justify-content: center;
height: 80px;
gap: 20px;
margin-top: 30px;


}



#profile{
    height: 100px;
    border-radius: 50%;
    margin-left: 20px;
   

}


h1{
    padding: 10px 100px;
    
    font-size: 170%;
}

p{
    font-size: 2em;
    color:  #8DC63F;
    text-align: center;
    
}

h3{
margin-left: 50px;
font-size: 2em;
color: grey;

}

a{
    text-decoration: none;
}

#logo{
    display: flex;
    justify-content: center;
    height: 20%;
    
}
a>img{
    height: 180px;
    width: 250px;
}

.main{display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   

}

.card{
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    height: 300px;
    width: 300px;
    color: rgb(66, 66, 66);
    border: 3px solid grey;
    margin: 20px;
    box-shadow: 2px 2px 10px  rgba(0, 0, 0, 0.315) ;
    border-radius: 10px;
    transition: all 0.5s ease-in-out ;


}


.card:hover{
    transform: scale(1.1) ;
    width: 350px;
    border: 3px solid #8DC63F;
    
}



@media (max-width:725px) {

#logo{
        display: flex;
        justify-content: center;
        height: 10vh;
        
}

p{ font-size: 1.8em;


}
        

 h3{
    font-size: 1.3em;
    text-align: center;
    margin: 0px;
 }       

 }


 @media (max-width:750px) {

    
    .profilebar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    gap: 5px;
    font-size: 0.9em;
    margin-top: 30px;
    
    
    }

    h1{
        padding: 10px 50px;
    
    }
    
}


@media (max-width:575px) {

    
    .profilebar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    gap: 5px;
    font-size: .7em;
    margin-top: 40px;
    
    
    }


    h1{
        padding: 10px 30px;
     
    }
    
}


    
