html {
    height: 100%;
    overflow-y: hidden;
}
button:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.076);
}
.center {
    width: 100%;
    display: flex;
    justify-content: center;
}
.btn-container {
    display: flex;
    flex-direction: column;
    height: 30vh;
    justify-content: space-around;
    margin-top: 50px;
}

button {
    font-family: 'Erica One', sans-serif;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 8px;
    font-size: 50px;
    color: white;
    width: 100%;
}
img {
    width: 50vh;
}
body {
    background-image: url(images/bg-start.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 40px;
    height: 100%;
}

@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
}

#animated {
    animation: bounce 5s infinite;
}