* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    height: 90dvh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container {
    text-align: center;
}

#showPopup {
    background-color: rgb(63, 126, 250);
    font-size: 20px;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
}

#showPopup:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.grow {
    animation: grow .4s cubic-bezier();
}

@keyframes grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}