I'm asking this for a class assignment I'm working on, and somehow I've broken CSS so bad that even my teacher is stumped.
body {
font-family: Georgia, serif;
background: url("graphics/Background.png");
margin: 5%;
}
h1 {
text-align: center;
padding: 0px 0px 20px 0px;
}
.panel {
border: 3px solid black;
width: 500px;
height: 500px;
margin: 20px;
}
#container {
display: flex;
align-content: space-between;
justify-content: center;
background-color: red;
flex-direction: column;
}
<h1>Sunday Funnies</h1>
<div id="container">
<img class="panel" src="Graphics/placeholder.png">
<img class="panel" src="Graphics/placeholder.png">
</div>
</div>
```
This is what I have after my professor did some tinkering to try and figure out what was going on.