* {
    box-sizing: border-box;
}
body {
    background-color: rgb(3, 54, 3);
}
.container img {
    max-width: 100%;
    height: 200px;
    position: absolute;
    object-fit: cover;
}
.big-container {
    background-image: url(./images/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border: 5px solid green;
    border-radius: 50px;
    display: grid;
    grid-template: 1fr / 1fr 2fr;
    justify-content: center;
    padding: 5%;
    margin: 5%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 20px 5px black;
}
.big-container::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    opacity: 0.8;
    content: "";
    filter: blur(50px);
    z-index: 1;
}
.text {
    border: 5px solid rgb(42, 138, 0);
    background-image: linear-gradient(rgba(0, 0, 255, 0.711), rgba(255, 255, 0, 0.733));
    border-radius: 30px;
    height: 100%;
    z-index: 10;
    box-shadow: 2px 2px 20px 5px;
    position: relative;
}
.text h1 {
    text-align: center;
    color: red;
    text-shadow: 2px 2px 5px black;
    font-size: 50px;
}
.text span {
    font-size: 30px;
}
.logo {
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.logo img {
    width: 70%;
    height: auto;
}
.container {
    align-self: center;
    justify-self: center;
    padding-left: 30px;
    padding-top: 30px;
    width: 40%;
    max-width: 350px;
    height: 200px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) translateZ(300px);
    z-index: 10;
}
.images {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from {}

    to {
        transform: rotateY(360deg)
    }
}
.container img:nth-child(1) {
    transform: translate(50%, -50%);
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
.container img:nth-child(2) {
    transform: translate(-50%, -50%);
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
.container img:nth-child(3) {
    transform: rotateY(120deg) translate(0%, -50%) translateX(-50%);
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
.container img:nth-child(4) {
    transform: rotateY(120deg) translate(0%, -50%) translateX(50%);
    left: 10px;
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
.container img:nth-child(5) {
    transform: rotateY(240deg) translate(0%, -50%) translateX(-50%);
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
.container img:nth-child(6) {
    transform: rotateY(240deg) translate(0%, -50%) translateX(50%);
    box-shadow: 1px 1px 5px 1px black;
    border: 5px solid rgb(42, 138, 0);
}
@media (max-width:1380px) {
    .container img:nth-child(4) {
        left: 0;
    }
}
@media (max-width:992px) {
    .big-container {
        grid-template: 200px 1fr /1fr;
    }

    .container {
        padding-left: 0;
    }

    .container img {
        max-width: 100%;
        width: 320px;
        height: 200px;
    }

    .logo img {
        width: 120px;
        height: auto;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width:776px) {
    .big-container {
        grid-template: 240px 1fr /1fr;
    }

    .container {
        padding-left: 0;
    }

    .logo img {
        width: 130px;
        height: auto;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width:670px) {
    .text h1 {
        display: none;
    }

    .logo img {
        width: 70%;
        height: auto;
        position: inherit;

    }
}