body{
    background-color: rgb(227, 241, 247);
    font-family:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(20, 7, 49)
}


.Flag{
    width: 100px;
    height: 100px;
    border-radius: 50%;  
}

.head{
    
    align-items: flex-start;
    margin-top: 250px;
    text-align: center;
    font-size:4vw;
    font-family:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.Subheader{

    text-align: center;
    font-size: x-large;
   

}

.JobList{
    padding:50px;
    border-radius: 10%;
    font-size:1vw;
    margin-top: 510px;
    display:grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: 100px 100px 100px 100px 100px 100px ;

}

.Box {

    
    padding:20px;
    border-color: white;
    border-radius: 20%;
    width: 300px;
    height: 300px;
    background-color: rgb(95, 95, 95);
    color:rgb(95, 95, 95); 
    text-align: center;
    transition: height 2s ,  color 2.5s;
    
}

.Box:hover {
    height: 450px;
    color: rgb(20, 7, 49) ;
}




