html,
body {
    font-family: 'Mulish', sans-serif;
}

.overlay {
    position: fixed;
    inset: 0;
   
    background: rgba(158, 152, 152, 0.4);
    display: flex;
    align-items: center;
   
    justify-content: center;
   
}

.window {
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

main {

    margin-bottom: 15px;
    flex: 2;
    
    display: flex;
   
    flex-direction: column;
    justify-content: space-evenly;
}

header {
    padding-left: 10px;
    border-bottom-style: solid;
    border-bottom-width: 1.5px;
    border-bottom-color: #f2f6fa;
}

.trash {

    align-self: center;
    padding: 5px 5px 0p 5px;
    margin: 0px 5px -2px;
    height: 22px;
    width: 22px;
}

.selected-certificate {
    display: flex;
    padding: 10px 20px;
    font-weight: bold;
    background-color: #eaf4ff;
    border-radius: 12px;
    margin-top: 15px;
    margin-left: 3%;
    margin-right: 3%;
    box-shadow: 0 0 1px #c6c5c5;
}

.spreadsheet {
    padding-top: 14px;
    padding-right: 8px;
}

.warning {
    background-color: #fff5d7;
    color: #bda96d;
    padding: 15px 8px;
    margin-top: 15px;
    border-radius: 12px;
    margin-left: 3%;
    margin-right: 3%;
    box-shadow: 0 0 1px #c6c5c5;
}

.p {
    padding-left: 3px;
    color: #a2a7af;
    margin-left: 3%;
    margin-right: 3%;
}

footer {
    display: flex;
    flex-direction: row-reverse;
    border-top-color: aliceblue;
    border-top-style: solid;
    border-top-width: 1.5px;
    padding: 20px;
}

.cancel {
    background-color: transparent;
    border: none;
    box-shadow: 0 0 2px #c6c5c5;
    padding: 10px 15px;
    border-radius: 20px;
    color: #5c5d63;
    text-shadow: 0px 0px 1px #7e7676;
    font-family: 'Mulish', sans-serif;
    transition: 0.4s ease;
    cursor: pointer;
}

.cancel:hover {
    transform: scale(1.1);
}

.remove {
    background-color: #ffedea;
    padding: 10px 10px;
    margin-left: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 2px #c6c5c5;
    color: #a32e2e;
    text-shadow: 0px 0px 1px #a88481;
    cursor: pointer;
    transition: 0.4s ease;
}

.remove:hover {
    transform: scale(1.1);

}

@media (min-width:600px) {
    .window {
        height: max-content;
        border-radius: 20px;
        width: 75%;
    }
}