:root {
    --golden-bronze: #cca43b;
    --rose-kiss: #ff6392;
    --mauve-shadow: #663f46;
    --wisteria-blue: #7796cb;
    --white-smoke: #f2f4f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IM Fell English', serif;
    font-style: normal;
}

.hidden {
    display: none;
}

body {
    background-color: var(--white-smoke);
    color: var(--mauve-shadow);
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--wisteria-blue);
    color: var(--white-smoke);
    min-height: 100px;
    justify-content: center;
    max-height: 100px;
}

nav a {
    color: var(--white-smoke);
    text-decoration: none;
    margin-left: 1rem;
    font-size: 1rem;
}

.selected {
    font-weight: bold;
    color: var(--golden-bronze);
    background-color: rgba(242, 244, 243, 0.5);
    border: 2px solid rgba(242, 244, 243, 0.5);;
    padding: 0.5rem 0.5rem;
    border-radius: 100%;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-right: 6rem;
}

#nav {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-padding {
    padding: 2rem;
}

.section {
    flex: 1;
    padding: 2rem;
    border-right: 1px solid hsl(0, 0%, 15%);
}

.section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #af2929;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 2px;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #8b2121;
    transform: translateY(-2px);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #333;
    border-radius: 2px;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s;
}

/* LOGIN */
.floating-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--wisteria-blue);
    border: 1px solid hsl(0, 0%, 15%);
    border-radius: 20%;
    color: var(--white-smoke);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-display {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-left: 5rem;
    margin-bottom: 1rem;
}