.backdrop{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: rgba(245, 243, 243, 0.8);
    width: 100vw;
    height: 100vh;
    margin: auto;
    z-index: 2;
}
.covid2{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 510px;
    margin: 20px auto;
    padding: 50px;
    background-color: rgba(241, 255, 234, 1);
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 10% 90%;
    justify-content: space-around;
    gap: 5px 20px;
    font-family: 'PT Sans', sans-serif;
    line-height: 20px;
    font-weight: 300;
    z-index: 2;
    color: black;
    animation: fadeIn 1s
}
.covid2 .head{
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 10% 90%;
}
.covid2 .head h2{
    margin: 10px 0;
}
.covid2 li{
    list-style: circle;
}
.covid2 .head .icon{
    width: auto;
    height: 100%;
}
.covid2hide{
    position: absolute;
    visibility: hidden;
    width: 700px;
    height: 500px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(241, 255, 234, 0.8);
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 15% 85%;
    justify-content: space-around;
    gap: 5px 20px;
    font-family: 'PT Sans', sans-serif;
    line-height: 20px;
    font-weight: 300;
}
.covid2hide .head{
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 10% 90%;
}
.covid2hide .head .icon{
    width: auto;
    height: 100%;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}
@media only screen and (max-width: 400px){
    .covid2{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: auto;
        margin: 20px auto;
        padding: 50px;
        background-color: rgba(241, 255, 234, 1);
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 10% 45% 45%;
        justify-content: space-around;
        gap: 5px 20px;
        font-family: 'PT Sans', sans-serif;
        line-height: 20px;
        font-weight: 300;
        z-index: 2;
        color: black;
        animation: fadeIn 1s
    }
    .covid2 .head{
        grid-column: 1/2;
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 100%;
    }
    .covid2 .head .icon {
        height: 50%;
        width: auto;
        margin: auto;
    }
    .covid2 .head h2{
        margin: 5px 0;
        font-size: 25px;
    }
}