html {
    height: 100%;
    background: #222;
    color: white;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    /* border: 10px solid blue; */
    min-height: calc(100vh - 60px);
}

* {
    box-sizing: border-box;
}

h1 {
    font-size: 6em;
    margin: 0;
}

h2 {
    font-size: 4em;
    margin: 0;
}

h3 {
    font-size: 3em;
}

img{
    /* width: 80%;
    height: 80%; */
    width: 40em;
    height: 40em;
}

.container {
    /* border: 1px solid green; */
    margin: 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.parent-container {
    display: flex;
    gap: 10px;
}

.section {
    flex: 1;
    /* border: 1px solid #ccc; */
    /* padding: 10px; */

    /* Centers the content inside each section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Sets a height so you can see the vertical centering */
    min-height: 200px;
}

textarea {
    width: 600px;
    font-size: 10em;
    align-content: center;
    font-weight: bold;
    text-align: center;
    border: solid 1 gray;
}