body {
    overflow: hidden;
}

.body-wrap {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 1rem;
}

.body-wrap > button {
    background-color: #0080ff;
    color: #FFF;
    font-size: 14px;
    border: 0;
    border-radius: 10px;
    padding: 12px 24px; 
    cursor: pointer;
}

.body-wrap > button:hover {
    transform: scale(102%);
    transition: all ease-in-out 500ms;
}