* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

.dash {
    display: flex;
    align-items: center;
    cursor: default;
    color: #FFB000;
    font-family: 'Rampart One';
    font-size: 28px;
    margin-left: 25px;
    margin-right: 25px;
}

.dash:hover {
    color: #00f5e9;
}

.Hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.me_waving {
    margin-top: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.5)) drop-shadow(0 0 20px rgba(204, 142, 0, 0.3)) brightness(1.1) contrast(0.9);
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: filter 0.3s ease-in-out;
}

.me_waving:hover {
    filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.75)) drop-shadow(0 0 20px rgba(204, 142, 0, 0.5)) brightness(1.1) contrast(0.9);
}

.me_pointing {
    margin-top: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.5)) drop-shadow(0 0 20px rgba(204, 142, 0, 0.3)) brightness(1.1) contrast(0.9);
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: filter 0.3s ease-in-out;
}

.me_pointing:hover {
    filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.75)) drop-shadow(0 0 20px rgba(204, 142, 0, 0.5)) brightness(1.1) contrast(0.9);
}

.Title {
    margin-top: 10px;
    color: #FFB000;
    font-family: 'Rampart One';
    letter-spacing: 0.05em;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-shadow:
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 20px #CC8E00,
        0 0 40px #CC8E00;
}

.Subtitle {
    margin-top: 10px;
    color: #CC8E00;
    font-family: 'Rampart One';
    letter-spacing: 0.05em;
    text-shadow:
        0 0 4px #000000,
        0 0 8px #000000,
        0 0 16px #CC8E00,
        0 0 32px #CC8E00;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.linkholder {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 28px;
    font-family: 'Rampart One';
    margin-top: 25px;
    margin-left: 25px;
    letter-spacing: 0.05em;
}

a:link {
    color: #CC8E00;
    background-color: transparent;
    text-decoration: none;
    text-shadow:
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 20px #CC8E00,
        0 0 40px #CC8E00;
}

a:visited {
    color: #CC8E00;
    background-color: transparent;
    text-decoration: none;
    text-shadow:
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 20px #CC8E00,
        0 0 40px #CC8E00;
}

a:hover {
    color: #00f5e9;
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: #CC8E00;
    background-color: transparent;
    text-decoration: none;
    text-shadow:
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 20px #CC8E00,
        0 0 40px #CC8E00;
}

p {
    color: white;
}

pre {
    color: white;
}

hr {
    height: 2px;
    border: none;
    background-color: #CC8E00;
    box-shadow: 0 0 10px #CC8E00, 0 0 5px #CC8E00;
}