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

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
.background{
    position: relative;
    width:550px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.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;
    justify-content: center;
    align-items: center;
}
.text{
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
}
.text img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.models{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
}
.models img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buttton{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.buttton img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    animation: zoomInOut 2s infinite;
}
.button2{
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.button2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    animation: zoomInOut 2s infinite;
}
@keyframes zoomInOut{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}