@import url("//cdn.web-fonts.ge/fonts/alkdots/css/alkdots.min.css");
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.background {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #0f0f0f;
    z-index: -2;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ascii-image {
    position: fixed;
    left: 50%;
    bottom: 8%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: -2;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.full-page-overlay {
    position: absolute;
    transition: opacity 1s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.outside-text {
    position: absolute;
    bottom: 27%;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 30px; /* Adjust text size */
    z-index: 10; /* Ensure it's above other elements */
    font-family: "ALKDots", sans-serif;
}
.links {
    margin-top: 20px; /* Space between text and links */
}

.links a {
    display: inline-block;
    margin: 0 10px; /* Space between links */
    color: #ffd4f4; /* Matches theme color */
    text-decoration: none;
    font-size: 20px; /* Adjust link size */
    font-family: "ALKDots", sans-serif;
    transition: color 0.3s ease-in-out;
}

.links a:hover {
    color: #ff99cc; /* Highlight color on hover */
}

