@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #1C1B29;
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: aliceblue;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.highlight {
    color: #26A269;
}

.status-badge {
    display: inline-block;
    background-color: rgba(38, 162, 105, 0.2);
    color: #26A269;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0;
    border: 1px solid #26A269;
}

p {
    font-size: 20px;
    color: #AFAFAF;
    margin: 20px 0;
}

.email {
    color: #26A269;
    text-decoration: none;
    font-weight: bold;
}

.email:hover {
    color: #04AA6D;
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }
}