:root {
    --fsu-red: #782F40;
    --fsu-gold: #CEB888;
    --light-bg: #faf7f5;
    --text-gray: #555;
}

* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--light-bg);
    color: var(--text-gray);
}

header {
    background: var(--fsu-red);
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
}

main {
    text-align: center;
    padding: 60px 20px;
}

h1 {
    color: var(--fsu-red);
    font-size: 36px;
    margin-bottom: 30px;
}

.icon {
    margin: 0 auto 30px;
    width: 120px;
}

.message {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subtext {
    max-width: 520px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
}

.subtext a {
    color: var(--fsu-red);
    text-decoration: none;
    font-weight: 600;
}

.plug {
    margin-top: 40px;
    width: 80px;
}