:root {
    --bg-color: #333333;
    --secondary-color: #bfff00;
    --text-color: #ffffff;
}

body, html {
    background-color: #333333;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

main {
    height: 100%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    padding: 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 1.5rem;
}

h1 {
    font-weight: 300 !important;
    font-size: 2rem;
    margin: 1rem 0;
    text-align: center;
}

.text {
    letter-spacing: 1px;
    font-weight: 200;
    text-align: center;
    margin: 0;
    opacity: 0.95;
    line-height: 1.375rem;
}

.text-highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.link-wrapper {
    margin-top: 1.625rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background 150ms;
    background: color-mix(in srgb, var(--secondary-color) 10%, transparent);
    border: 1px solid transparent;
}

.mail-icon {
    height: 2rem;
    fill: var(--text-color);
}

svg {
   height: 1.5rem;; 
}

svg path {
    fill: var(--secondary-color);
}

.link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 1px;
    outline: none !important;
    font-weight: 300;
    border: 1px solid transparent !important;
}

.link:focus {
    border: 1px solid transparent !important;
}

.link-wrapper:has(a:hover) {
    background: color-mix(in srgb, var(--secondary-color) 20%, transparent);
}

.link-wrapper:has(a:focus) {
    border: 1px solid var(--secondary-color);
}

.company-logo {
    width: 120px;
    height: auto;
}

.footer {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    opacity: 0.625;
    font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .text {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .link {
        font-size: 1rem;
    }

    svg {
        height: 1.5rem;
    }
}