/*
 * Copyright (c) 2025 RDProject
 * Project name: rdproject-website
 * All rights reserved.
 */

html, body {
    background: black;
    font-family: 'Roboto Mono', monospace;
    color: white;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}

redText {
    transition: all 0.3s ease;
}

redText:hover {
    color: rgb(123, 0, 0);
}

#content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: auto;
}

#writer {
    margin: auto;
    width: fit-content;
}

#writer span {
    font-size: 70px;
}

#links div {
    position: relative;
    display: inline-block;
    width: min-content;
}

#links button {
    background-color: black;
    border-width: 0;
    padding: 30px;
    cursor: pointer;
}

#links img {
    filter: invert(100%);
    height: 115px;
}

#github:hover img,
#discord:hover img,
#youtube:hover img,
#tiktok:hover img {
    filter: invert(60%)
}

#esc {
    position: absolute;
    font-size: 50px;
    top: 5%;
    left: 5%;
    transition: all 0.3s ease;
}

#esc:hover {
    cursor: pointer;
    color: rgb(123, 0, 0);
}

#esc-opened {
    position: absolute;
    display: none;
    top: calc(10% + 50px);
    left: 5%;

    background-color: black;
    border: 1px solid #ccc;
    border-radius: 8px;

    width: auto;
    padding: 5px;
}

#esc-opened ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#esc-opened li {
    transition: all 0.3s ease;
    padding: 10px 15px;
}

#esc-opened li:hover {
    color: rgb(123, 0, 0);
    cursor: pointer;
}