#container {
    width: 1200px;
    margin: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#header {
    height: 200px;
    border-style: solid;
    display: flex;

}

#menu {
    background-color: red;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding: 5px;
}

.sp {
    width: 350px;
    height: 250px;
    box-sizing: border-box;
    border: solid;
    float: left;
    margin: 15px;
    border-radius: 20px;
    padding: 30px;
}

.sp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(254, 25, 25, 0.25);
}

p {
    font-size: 15px;
    text-shadow: 2px 2px 4px gray;
}

h1 {
    font-size: 40px;
    color: #ff6600;
    text-align: center;
    text-shadow: 2px 2px 5px gray;
    margin: 20px 0;
}