/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    
    
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(0,0,0);
    color: #917948;
    line-height: 1.6;
}

/* =================================================== NAV BAR STUFF==========*/
header {
    background-color: rgb(0,0,0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #917948;
}

h1 {
    font-size: 2rem;
    color: #917948;
}
header p{
    font-size: 0.75rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #917948;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}
/*-----------------------------------------------------------------------*/




/* ========================================== GENERAL ==============================*/

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 40px;
    color: #917948;
}

footer {
    background-color: rgb(0,0,0);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    color: #aaa;
}


/* --------------------------------------------------------------------------------- */

/* ========================================== SPECIFICS ==============================*/

#logo {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, rgb(0,0,0), rgb(18, 18, 18));
}


#form {
    background-color: rgb(18, 18, 18);

}

#frontpagelogo {
    width:70vw; max-width: 600px; margin-top: 15px;
}


/* --------------------------------------------------------------------------------- */




/* ========================================== CLASSES ==============================*/

.construction {
    text-align: center;
    margin-bottom: 20px;
    background-color: rgb(18, 18, 18);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #917948;
    background-color: rgb(0,0,0);
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #917948;
}

.btn:visited{
    color: #917948;
}
/* --------------------------------------------------------------------------------- */