html {
    font-size: 62.5%; 
   } 

button{
    border-radius: 0;
    border: none;
    appearance: none;
    background-color: white;
}

.modal-container{
    display: none;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 2;
}

.modal h1{
    font-size: 3rem;
    text-align: center;
}

.readmore-button{
    width: 40vw;
    margin-top: 2rem;
}


.modal{
    background-color: white;
    width: 80%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    margin: 20% auto;
    text-align: center;
    line-height: 110%;
    padding-top: 2rem;
}

.show{
    pointer-events: auto;
    display: flex;
}

#close{
    position:static;
    float: right;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: grey;
}

@media (min-width:400px){
    .readmore-button{
        width: 15vw;
    }
}

@media (min-width: 800px){
    .readmore-button{
        width: 10vw;
        margin-top: 3rem;
    }

    .modal{
        line-height: 200%;
    }

    .modal h1{
        font-size: 5rem;
        padding: 5rem 0;
    }
}

@media (min-width:2000px){
    .modal h1{
        font-size: 10rem;
    }
}

@media (max-width: 800px){
    .modal-container{
        overflow-y: auto;
        width: 100vw;
    }
    .modal{
        overflow-y: initial;
        width: 90vw; 

    }
    .modal p{
        font-size: 1rem;
    }

}