* {
    font-family: 'Poppins', Verdana, Geneva, Tahoma, sans-serif, Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
}

:root {
    --main-color: #16918b;
}

main {
    background-color: var(--main-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100dvh;
}

button {
    padding: 10px;
    border-radius: 7px;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
    background-color: #eefffe;
    color: var(--main-color);
    letter-spacing: 1px;
}

main button:hover {
    background-color: #ccfffc;
}

button:active {
    transform: scale(0.98);
}

.pop-up-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    transition: 0.1s;
}

.pop-up-wrapper {
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    transform: scale(0.8);
    transform: translateY(-10px);
    transition: 0.5s;
    opacity: 0;
    width: 90%;
    max-width: 400px;
    gap: 10px;
    box-shadow: 0 0 10px white;
}

.pop-up-container.active {
    visibility: visible;
}

.pop-up-container.active .pop-up-wrapper {
    transform: scale(1);
    opacity: 1;
    transform: translateY(0);
}

.pop-up-wrapper h4 {
    font-weight: bold;
}

.pop-up-wrapper p {
    margin: 15px 0;
    font-size: 14px;
}

.btn-wrapper {
    padding: 10px 0;
    text-align: right;
    border-top: 1px solid gray;
}

.btn-wrapper button {
    font-size: 14px;
    padding: 7px 10px;
    border-radius: 3px;
    color: white;
}

.btn-wrapper button:first-of-type {
    background-color: rgb(193, 193, 193);
}

.btn-wrapper button:last-of-type {
    background-color: var(--main-color);
}
