/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* This removes the scrollbars */
}

body {
    margin: 0;
    position: relative;
    background: #0a0a2a;
    font-family: 'JetBrains Mono', monospace;
}

#center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#center h1 {
    color: #ffffff;
    font-size: 10rem;
    margin-bottom: 20px;
}

#contact-info p {
    color: #ffffff;
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-info p i {
    margin-right: 10px;
    color: #00afff; /* Telegram and Discord icon color */
}

#contact-info a {
    color: #00afff;
    text-decoration: none;
}

#contact-info a:hover {
    text-decoration: underline;
}

