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

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

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

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

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

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

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

.right img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    object-fit: cover;
}

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

.left img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    object-fit: cover;
}

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

.middle img {
    width: 100%;
    height: 100%;
    max-width: 350px;
    object-fit: cover;
}

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

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

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

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

/* The Zoom-In / Zoom-Out Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        /* Zooms in by 8% */
    }

    100% {
        transform: scale(1);
        /* Zooms back out */
    }
}

@media (max-width: 360px) {
    .logo img {
        max-width: 100px;
    }

    .middle {
        top: 58%;
    }

    .middle img {
        max-width: 300px;
    }

    .gold {
        top: 76%;
    }

    .gold img {
        max-width: 400px;
    }
}