@font-face {
  font-family: 'CustomFont';
  src: url('../fonts/Ubuntu-Bold.ttf');
}
@font-face {
  font-family: 'logoFont';
  src: url('../fonts/Comforter-Regular.ttf');
}
@font-face {
  font-family: 'markerFont';
  src: url('../fonts/PermanentMarker-Regular.ttf');
}
* {
    font-family: 'CustomFont';
    cursor: default;
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: rgb(26, 20, 30);
    color: black;
    background: rgb(246, 139, 139);
    overflow: clip;
}
.fa-solid, .fa-brands {
    cursor: pointer;
}



.main-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.img-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}
.img-container img {
    width: 40vw;
    height: auto;
}

.square-container {
    width: 100%;
    height: 25vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.square-item {
    width: 32vw;
    height: 30vh;
    background: black;
    clip-path: polygon(0% 0%, 90% 0%, 25% 100%, 0% 100%);
}
.square-item.square2 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 75% 100%);
}
.square-wrapper {
    filter: drop-shadow(0px 3px 0px rgb(255, 0, 0))
    drop-shadow(0px 5px 0px rgb(0, 0, 0))
    drop-shadow(0px 3px 0px rgb(239, 225, 200))
    ;
}
.shading-squares-con {
    position: absolute;
    top: 0;
    left: 0;
}
.shading-square {
    height: 50vh;
    width: 50vw;
}
.shading-square:nth-child(1) {
    position: absolute;
    top: 0;
    left: 50vw;
    background: black;
    opacity: 0.1;
}
.shading-square:nth-child(2) {
    position: absolute;
    top: 50vh;
    left: 0vw;
    background: white;
    opacity: 0.1;
}

.header-letter {
    /*position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%,0);*/
    font-family: "logoFont";
    font-size: calc(5vw + 12vh);
    filter: drop-shadow(0px 6px 3px rgb(12, 12, 12));
}



.link-item-con {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin: 5vh 0;
}
.link-shadow-wrap {
    transition: all 0.25s ease;
    filter: drop-shadow(0px 2px 1px rgb(40, 40, 40));
}
.link-shadow-wrap:hover {
    transition: all 0.1s ease;
}
.link-shadow-wrap:active {
    transition: all 0s ease;
}
.link-item {
    position: relative;
    transition: all 0.3s ease;
    width: 20vw;
    padding: 0 10vw;
    height: 10vh;
    text-align: center;
    color: white;
    background-color: black;
    font-size: 250%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* (top-left, top-right, bottom-right, bottom-left) */
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    cursor: pointer;
}
.link-item:hover {
    transition: all 0.15s ease;
    transform: scale(1.02);
}
.link-item:active {
    transition: all 0s ease;
    transform: scale(1.01);
}

.link-item-side {
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    color: black;
    background: black;
    width: 4vw;
    height: 10vh;
    clip-path: polygon(0% 0%, 10% 0%, 100% 100%, 90% 100%);
    position: absolute;
    left: 68vw;
}
.link-shadow-wrap:hover ~ .link-item-side {
    transition: all 0.15s ease;
    transform: scale(1.02);
    left: 69vw;
}
.link-shadow-wrap:active ~ .link-item-side {
    transition: all 0s ease;
    transform: scale(1.01);
    left: 68.5vw;
}
.link-item-side.left {
    clip-path: polygon(90% 0%, 100% 0%, 10% 100%, 0% 100%);
    left: 28vw;
}
.link-shadow-wrap:hover ~ .link-item-side.left {
    left: 27vw;
}
.link-shadow-wrap:active ~ .link-item-side.left {
    transition: all 0s ease;
    transform: scale(1.01);
    left: 27.5vw;
}

.fa-brands.fa-tiktok {
    color: black;
    filter: drop-shadow(2px 2px 1px rgb(255,0,0))
    drop-shadow(-2px -2px 1px rgb(0, 195, 255));
}
.fa-brands.fa-discord {
    color: white;
    filter: drop-shadow(0px 2px 1px rgba(255,0,0,0.2))
    drop-shadow(0px -2px 1px rgba(0, 195, 255,0.2));
}
.link-item.gote {
    font-family: 'markerFont';
    text-shadow: 0px 0px 6px rgba(255,255,255, 0.5);
}

.link-item.disabled {
    cursor: not-allowed;
    filter: brightness(0.5);
    position: relative;
}
.link-item.disabled::after {
    content: '';
    background-color: red;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translate(-50%, -50%);
}

.tooltip {
    width: fit-content;
    height: fit-content;
    padding: 5px;
    color: white;
    background-color: black;
    border-radius: 10px;
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, 0);
    visibility: hidden;
    text-wrap: nowrap;
}
.disabled.gote:hover .tooltip {
    visibility: visible;
}

@media screen and (max-width: 700px) {
    .link-item {
        width: 40vw;
    }
    .link-item-side {
        width: 6vw;
    }
    .link-item-side {
        left: 78vw;
    }
    .link-shadow-wrap:hover ~ .link-item-side {
        left: 79vw;
    }
    .link-shadow-wrap:active ~ .link-item-side {
        left: 78.5vw;
    }
    .link-item-side.left {
        clip-path: polygon(90% 0%, 100% 0%, 10% 100%, 0% 100%);
        left: 16vw;
    }
    .link-shadow-wrap:hover ~ .link-item-side.left {
        left: 15vw;
    }
    .link-shadow-wrap:active ~ .link-item-side.left {
        left: 15.5vw;
    }
}
@media screen and (max-width: 1000px) {
    .square-item {
        width: 35vw;
        height: 35vh;
        background: black;
        clip-path: polygon(0% 0%, 90% 0%, 0% 100%, 0% 100%);
    }
    .square-item.square2 {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
    }
}