body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.bg {
    background-image: url(/images/spawn.jpg);
    height: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
}
/* Navbar */
nav {
    background-color: #000000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content */
.container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    background: rgb(0, 0, 0);
    opacity: 0.8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: white;
}

.subCon {
    display: flex;
}

.subCon2 {
    display: flex;
    flex: 1;
    padding: 5px;
    margin: 10px;
    /*border: 2px solid red;*/
    font-size: 1.1rem;
}

.subCon3 {
    display: flex;
    flex: 1;
    padding: 5px;
    border: 2px solid red;
}

.noFlex {
    display: block;
}

.centeredWhite {
    text-align: center;
    color: #ffffff;
}

.input-section {
    margin-top: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"], textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background-color: #4a90e2;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #3b78c2;
}

.onHover:hover {
    text-decoration: underline;
    cursor: pointer;
}

.paragraph1 {
    text-align: center;
    font-size: 1.1rem;
    white-space: pre-line;
}