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

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

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

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

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

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

.buton1 img{
    width: 100%;
    height: 100%;
    max-width: 300px;
    object-fit: cover;
    animation: zoominout 1s ease-in-out infinite;
    cursor: pointer;
}

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

.buton2 img{
    width: 100%;
    height: 100%;
    max-width: 300px;
    cursor: pointer;
    object-fit: cover;
    animation: zoominout 1s ease-in-out infinite;
}

@keyframes zoominout {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}