/* style.css */
@font-face {
    font-family: "GrisseeRegular";
    src: url('font/MNGrissee-Regular.otf');
}

@font-face {
    font-family: "GrisseeExtraBold";
    src: url('font/MNGrissee-ExtraBold.otf');
}

@font-face {
    font-family: "GrisseeThin";
    src: url('font/MNGrissee-Thin.otf');
}


.GrisseeRegular {
    font-family: "GrisseeRegular";
}

.GrisseeExtraBold {
    font-family: "GrisseeExtraBold";
}

.GrisseeThin {
    font-family: "GrisseeThin";
}

.canvas-container {
    position: relative;
}

canvas {
    z-index: 1;
    /* Add other canvas styles if needed */
}

.hero {
    z-index: 2;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
}

.down {
    z-index: 3;
    text-align: center;
    position: absolute;
    opacity: 0.8;
    height: 40px;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
    animation: fadeInAndBlink 1s ease-in-out infinite;
    /* Use the defined animation */

}

@keyframes fadeInAndBlink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        /* Fade in at 50% of the animation */
    }

    100% {
        opacity: 0;
        /* Fade out at the end of the animation */
    }
}

body {
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    font-size: 20px;
    height: 100vh;
    color: #fff;
    margin: 0;
    background-color: #000;
}

.content {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4);
    padding: 75px;
    top: 12vh;
    display: flex;
    flex-direction: column;
}

.infoBlock {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.content p {
    margin: 50px 20px;
}

.linkedin-logo, .github-logo, .keybase-logo, .hackthebox-logo {
    color: white;
    width: 25px;
    height: 25px
}
.hackthebox-logo svg {
    display: inline-block;
    margin-top: -4px;
    margin-left: 4px;
}

@media only screen and (max-width: 600px) {
    .content {
        padding: 10px
    }
    .infoBlock {
        display: block
    }

  }