#container {}

#header {
    height: 200px;
    border: solid;
    background-color: burlywood;
}

#menu {
    background-color: aqua;
    height: 50px;
}

ul {
    color: purple;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    font-weight: bold;
}

li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

#content {
    overflow: hidden;
}

.sp {
    width: 350px;
    height: 250px;
    box-sizing: border-box;
    border: solid;
    float: left;
    margin: 12px;
    border-radius: 15px;
    padding: 20px;
}

p {
    font-size: 15pt;
    text-shadow: 2px 2px 4px red;
    text-align: center;
}

h1 {
    font-size: 30pt;
    text-align: center;
    text-shadow: -2px -2px 4px pink;
    color: pink;
}