body {
    background-color: rgb(0, 58, 0);
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
}

audio {
    display: none;
}

header {
    background-color: rgb(0, 28, 0);
    height: fit-content;
}

header h1 {
    margin: 0;
    text-align: center;
    color: cornflowerblue;
}

.buttons {
    display: flex;
    width: 80%;
    margin: auto;
    padding-top: 1%;
    padding-bottom: 20px;
    gap: 20px;
}

.buttons a {
    flex: 1;
    height: 50px;
    border-radius: 100px;
    background-color: yellow;
    color: hotpink;
    text-align: center;
    align-content: center;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid grey
}

.buttons a:hover {
    padding: 20px;
    font-size: 40px;
    background-color: white;
}


h2 {
    color: white;
    text-align: center;
    font-size: 4rem;
}

.char-container {
    width: 85%;
    height: 500px;
    border: 1px solid lime;
    margin: 8rem auto;
    display: flex;
}

.char-container img {
    height: 100%;
}

.text-container {
    color: white;
}

.text-container h3 {
    font-size: 4rem;
}

.text-container p {
    font-size: 2rem;
}

form {
    width: 600px;
    border: 1px solid black;
    margin: 100px auto;
    padding: 30px;
    color: white;
    font-size:1.5rem;
}

input,
select {
    font-size: 1rem;
}

textarea {
    resize: none;
    width: 500px;
    height: 100px;
    font-size: 1rem;
}

.button {
    font-size: 1rem;
    padding: 5px 10px;
}

footer {
    background-color: darkred;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: white;
    text-align: center;
}

footer ul li a {
    color: white;
}