* {
    box-sizing: border-box;
}

.horizontal1 {
    background-color: white;
    padding: 25px;
}

.horizontal1 h1 {
    text-align: center;
}

.horizontal2 {
    background-color: darkslategray;
    color: white;
    padding: 25px;
}

.horizontal2 h1 {
    text-align: center;
}

section img {
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
    max-height: 250px;
}

body {
    margin: 0;
    max-width: fit-content;
}

header {
    text-align: center;
    background-color: lightgray;
    padding: 5px;
}

footer {
    text-align: center;
    background-color: darkgray;
    display: flex;
    justify-content: center;
}

footer p {
    padding: 15px;
}

.navbar ul {
    list-style: none;
    background-color: rgb(75, 74, 74);
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.navbar a {
    color: whitesmoke;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover {
    background-color: black;
}

.navbar li {
    float: left;
}

