.modal-content>div:first-child{
    display: flex;
    flex-direction: row;
    justify-content: right;
    width: 100%;
}

#close{
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.25rem;
}
#close:hover{
    background-color: #ffffff3a;
    transition: 0.5s;
}

.modal{
    background-color: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(41px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.modal-content{
    background-color: #036;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 800px;
    max-height: 90%;
    overflow-y: auto;
}

@media screen and (max-width: 600px) {

    .modal-content{
        min-width: 90%;
        min-height: 90%;
        padding: 10px;
    }

}