/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #EDE0D4;
    background-color: #080808;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: dvh;
}

h2,
h3 {
    padding: 32px;
    padding-bottom: 8px;
    width: 500px;
}

p {
    padding: 32px;
    padding-bottom: 4px;
    padding-top: 4px;
}

.header,
.subheader {
    display: flex;
    
    align-items: center;
    font-size: 16px;
    padding: 32px;
}

.header {
    background-color: #132A13;
    height: 100px;
    justify-content: space-between;
}

.header-left {
    display: flex;
    flex-wrap: wrap;
    font-size: 32px;
}

.header-right {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.subheader {
    height: 300px;
    justify-content: space-around;
    gap: 100px;
}

.subheader h1 {
    color: #90A955;
}

.subheader p {
    color: #ECF39E;
}
.subheader img {
    justify-content: center;
    max-height: 400px;
    max-width: fit-content;
    flex-wrap: wrap;
}
.header a {
    text-decoration: none;
    color: #ECF39E;
}
.header-right a {
    border: 2px solid #90A955;
    border-radius: 10px;
    padding: 8px;
}

.chat-room {
    display: flex;
    flex-direction: column;
    width: 1200px;
    height: 500px;
    color:white;
    background-color: black;
    border: 2px solid black;
    align-self: center;
}

.chat-room-title {
    text-align: center;
    border-bottom: 2px solid black;
    width: 1196px;
}
.chat-room-input {
    display: flex;
    flex-direction: row;
    margin-top: auto;
}

.input-user {
    width: 100px;
}
.input-message {
    padding: 4px;
    border-top: 2px solid #080808;
    width: 1000px;
}

button {
    width: 100px;
}
.footer {
    background-color: #132A13;
    color: #ECF39E;
    text-align: center;
    padding: 16px;
    margin-top: auto;
   
}
.months-2026 {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding: 20px;
}
.months-2026 a {
    text-decoration: none;
    color: #EDE0D4;;
}

.run {
    display: flex;
    align-items: center;
    justify-content: end;
}

.run h2 {
    padding: 0px;
    width: 150px;
}
.chat-message {
    color: red;
}

.blog {
    display: flex;
    flex-direction: column;
}

.entry {
    display: flex;
    border-bottom: 1px solid #132A13;
    height: 360px;
}

.date {
    color: #90A955;
    padding: 10px;
    width: 100px;
    align-self: center;
}

.content {
    padding: 20px;
    padding-top: 10px;
    width: 1200px;
    align-self: center;
}

.img {
    margin-left: auto;
}