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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.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: 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;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
}

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

.text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
}

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

.assets {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

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

.button {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    z-index: 20;
}

.button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    animation: zoominout 2s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.app {
    position: absolute;
    top: 38%;
    left: 40%;
    width: 100%;
    z-index: 10;
}

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

.footer {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

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

.phone {
    position: absolute;
    top: 70%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 100%;
}

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

@media (max-width: 414px) {
    .text {
        max-width: 300px;
    }

    .button {
        max-width: 170px;
    }
}

@media (max-width: 375px) {
    .text {
        top: 20%;
        max-width: 280px;
    }

    .button {
        max-width: 160px;
    }
}