:root {
    --red: rgb(255, 80, 80)
}

html {
    font-family: 'Open Sans', Helvetica, sans-serif;
    font-weight: 300;
    color: #415868;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 400px;
    font-size: 14px;

    background: #3F3F3F;
}

.modal {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    color: #415868;

    border-radius: 4px;
    box-shadow: 4px 4px 20px black;

    transform: scale(1);
    transition: all 1s ease-in;
}

.modal.close {
    transform: scale(0);
}

img {
    margin: 1rem;
    margin-top: 2rem;
}

h3 {
    text-align: center;
    margin: 0px;
    margin-bottom: 0.25rem;
}

p {
    text-align: center;
    margin: 0px;
    margin-bottom: 1.5rem;
}

button {
    width: 100%;
    color: white;
    background: var(--red);
    border: none;
    padding: 0.75rem;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    border-radius: 0px 0px 4px 4px;
}
