body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(/assets/img/wtn_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

a p {
    margin: 0;
}

.content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 1;
    perspective: 800px;
}

.wtn-logo {
    position: relative;
    z-index: 2;
}

.wtn-logo img {
    height: 128px;
    width: auto;
    display: block;
}

.wtn-logo::before {
    content: "";
    position: absolute;

    top: -50px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: radial-gradient(
        circle at 30% 30%,
        #ffffff 0%,
        #858189 50%,
        #858189 100%
    );

    z-index: 0;
    pointer-events: none;
}

.wtn-logo::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);

    width: 20px;
    height: 100vh;

    background: linear-gradient(
        to right,
        #847F88 0%,
        #CCC6D2 42%,
        #9B969F 65%,
        #7D7386 100%
    );

    border-radius: 3px;
    z-index: -1;
    pointer-events: none;
}

.wtn-about-us {
    z-index: 2;
    transition: 0.1s;
    cursor: pointer;
}

.wtn-about-us img {
    height: 100px;
}

.wtn-about-us:hover {
    transform: rotateZ(3deg);
}

.socials {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    padding: 8px;
    background-color: white;
    border-radius: 32px;
    transform: rotateY(-10deg);
    transition: 0.1s;
}

.socials:hover {
    transform: rotateY(-15deg);
}

.socials a {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #0D6F38;
    padding: 8px;
    gap: 4px;
    border-radius: 999px;
}

.socials a svg {
    width: 24px;
    height: 24px;
}

.socials a:hover {
    background-color: #FF4006;
}
