body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.landing--area {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1e28, #0a0b11);
    z-index: 1;
    overflow: hidden;
}

.landing--area::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: calc(50% - 200px);
    top: calc(50% - 200px);
    background: url(img/path.png);
    background-size: cover;
    animation: 15s linear rotate infinite;
    opacity: .05;
    z-index: -1;
}

.landing--area .landing--body {
    display: flex;
    flex-direction: column;
    min-width: 800px;
    gap: 50px;
}

.land--center {
    display: flex;
    align-items: center;
}

.l--image img {
    display: block;
    width: 100%;
}

.l--socials {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid #ffffff35;
    padding: 10px 0;
    padding-left: 40px;
    margin-left: 40px;
    width: calc(100% - 40px);
}

.l--socials a {
    font-size: 35px;
    height: 40px;
    width: 40px;
}

.l--socials a svg {
    fill: #fff;
    transition: .2s;
}

.l--socials a:hover svg {
    fill: #f7873b;
}

.land--bottom {
    text-align: center;
}

.land--bottom span {
    color: #fff;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 15px;
    letter-spacing: 8px;
}

.l--image {
    width: calc(100% - 40px);
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    } 
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 900px){
    .land--center {
            flex-direction: column-reverse;
        }

        .l--image img {
            width: 300px;
            max-width: 100%;
        }

        .l--image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 0;
            margin: 30px 0;
            border-top: 1px dashed #ffffff30;
            border-bottom: 1px dashed #ffffff30;
            width: fit-content;
        }

        .l--socials {
            margin: 0;
            padding: 0;
            border: 0;
            justify-content: center;
            width: fit-content;
        }

        .landing--area .landing--body {
            gap: 0;
        }

        .l--socials a {
            width: 34px;
            height: 34px;
        }
}