body {    
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.container {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 55%;
}

section {
    width: 50%;    
    padding: 3em;
    text-align: center;            
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0);
}

section h1 {    
    font-weight: bold;
    color: #000;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

section button {    
    border-radius: 6em;
    width: 4em;
    padding:0.3px;
    font-size: 2.5rem;
    background: #17b978;
    color: #000000;
}

section button:hover {
    cursor: pointer;
}

section button:active {
    background: rgba(255, 255, 255, 0.25);
}

section:hover {
    margin: 4px;
}