* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #87adff;
    font-family: Arial, Helvetica, sans-serif;
    font-family: system-ui, sans-serif;
    display: grid;
    grid-template-rows: 25vh auto 15vh;
    min-height: 100vh;
}

header, main, footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    background-color: rgb(34, 139, 34);
    color: white;
    font-size: 10vh;
}

header a {
    color: white;
    text-decoration: none;
}

main {
    background-color: #87adff;
    padding: 20px 0;
}

section {
    background-color: rgb(0, 0, 0);
    color: white;
    width: clamp(45ch, 50%, 75ch);
    padding: 20px;
    border-radius: 10px;
}

footer {
    background-color: rgb(0, 145, 10);
    color: white;
    font-size: 5vh;
    font-family: system-ui, serif;
}

form {
    background-color: white;
    padding: 10px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 5px;
    margin-top: 20px;
}

input[type="text"], textarea {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: white;
    color: black;
}

pre {
    font-size: 30px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

details {
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(34, 139, 34, 0.2);
    border-radius: 5px;
}

summary {
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
}

summary:hover {
    color: #228b22;
}
