* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
}


.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons {
    position: absolute;
    top: 77%;
    left: 24%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    object-fit: cover;
    animation: zoom 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .buttons {
        top: 39.5%;
        left: 50%;
    }

    .buttons img {
        max-width: 250px;
    }
    
}

@media (max-width: 428px) {
    .buttons {
        top: 39.5%;
        left: 50%;
    }

    .buttons img {
        max-width: 250px;
    }
    
}