body {
    background-image: url('img/hexen.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.hero-section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    color: red;
    text-align: center;
    cursor: pointer;
    font-size: 3rem;
    text-shadow: 2px 2px 10px black;
}

.comments-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 20px;
}

.comments-section h2 {
    color: red;
    margin-bottom: 20px;
}

#comment-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 15px;
    background-color: #111;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid red;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
    padding: 10px;
    border: 1px solid red;
    background-color: #222;
    color: white;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: black;
    color: red;
    border: 1px solid red;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

button:hover {
    background-color: red;
    color: black;
}