@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

.hecker_text {
    font-family: 'Space Mono', monospace;
    font-size: 10vw;
    color: white;
    padding: 0rem 10px;
    border-radius: 10px;
    text-align: center;
    white-space: pre-wrap;
}

.hecker_text.sub {
    font-size: 5vw;
    position: relative;
    bottom: 13vw;
}

@media (max-width: 685px) {
    .hecker_text {
        font-size: 14vw;
    }
    .hecker_text.sub {
        font-size: 7vw;
        bottom: 10vw;
    }
}

.hecker_content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    place-items: center;
    height: 120vh;
    width: 100vw;
    background-color: black;
    margin: 0rem;
    overflow: hidden;
    padding-top: 10vw;
}

@media (max-width: 915px) {
.hecker_content {
    padding-top: 250px; /* Add padding to the top of the content to prevent it from being hidden by the navbar */
}
}