:root{
    --light-green: #c9d9dd;
    --green: #046443;
    --medium-green: #247353;
    --grey: #ececec;
    --dark-grey: #5c5c5c;
}

*{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    display: flex;
    width: 100%;
    background-color: white;
}

button{
    border: none;
    outline: none;
    cursor: pointer;
    background-color: inherit;
    font-family: inherit;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: none;
}

.modal.active + .modal-overlay {
    display: block;
}