
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

body {
    background-image: url('./homepagebackground.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

} 

#MenuDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}


/* Top right text */
.top-right {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 48px;
    font-style: italic;
    color: #f8f5f5;
  position: absolute;
  
}


.card {
    background-color:white;
    opacity: 0.75;
    border-radius: 15px;
    height:auto;
    width: 270px;
    margin-top: 100px;
    padding-top: 20px;
 }

 .card a {
    display: block;
    text-align: center;
    background-color: black;
    color: white;
    padding: 15px 20px;
    margin: 20px 50px;
 }

 .card p {
    padding: 0 20px;
    text-align:justify;
    font-size: 16px;
    color: black;
 }

 .card h1 {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
 }




    
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    height:80hv;
    
}
 .card:hover{
    background-color:rgb(153, 150, 150);
    color: white;

    opacity: 1.5;
    transform: scale(1.09);
    transition: transform 0.9s ease;

 }

 .card:hover p {
    
    color: white;
 }

.container img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
}


.myimg {
    
    border-radius: 15px;
    width: 100px;
    height: 100px;
    margin-top: 20px;
}
