*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Garamond, sans-serif;
}
  
body{
    background-image: url(https://www.austintexas.gov/sites/default/files/2021-03/COVID-19_HeroImage-vaccine.jpg);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.heading{
    color: white;
    border: 5px solid blue;
    border-radius: 60px 20px;
    background-color: darkblue;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: 600;
    display: flex;
    padding-top: 5px;
}

p{
    font-size: 25px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
  
.container{
    height: 90vh;
    width: 90%;
    padding: 20px 15px;
    margin: 0 20px;
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
}
  
.cont{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.card{
    font-family: Garamond, sans-serif;
    cursor: pointer;
    text-align: center;
    width: 350px;
    height: 350px;
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    border: 5px solid rgba(0, 0, 139, 0.18);
    border-radius: 20px;
}

.Sta,
.Con,
.Dea,
.Rec,
.Act{
    font-family: Garamond, sans-serif;
    font-weight: 900;
    font-size: 20px;
    padding: 0;
    border-radius: 15px;
    margin: auto;
    text-decoration: underline;
}

.sta,
.con,
.dea,
.rec,
.act{
    font-family: Garamond, sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    margin: auto;
}

.sta:hover,
.con:hover,
.dea:hover,
.rec:hover,
.act:hover{
    background-color: darkblue;
}
  
.card:hover{
    transition: transform .2s;
    transform: scale(1.04);
    background: blue;
}