*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background{
    position: relative;
    width: 700px;
    height: 100%;
}
.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%;
}
.logo{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 250px;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model{
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.model img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
}
.text img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buttons{
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.buttons img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: smoothZoom 1.5s ease-in-out infinite;
    cursor: pointer;
}
@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
}
@media (max-width: 440px) {
    .container{
        height: 100vh;
        align-items: flex-start;
    }
    .background{
        height: 100vh;
        max-width: 100%;
    }
    .logo{
        top: 15%;
        max-width: 200px;
    }
    .model{
        top: 80%;
    }
    .text{
        top: 35%;
        max-width: 300px;
    }
    .buttons{
        top: 55%;
        left: 50%;
    }
}