.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a2b;
    padding: 10px 20px;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    color: #eeefe8;
}

.logo {
    width: 100px;
    height: 100px;
}

img {
    width: 300px;
    height: 300px;
}

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    font-weight: 800;
}

h3 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: large;
    font-weight: 800;
}

.sps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    background: #87bfba;
    padding: 50px;
}

.footer {
    display: flex;
    justify-content: center;
    gap: 200px;
    align-items: center;
    color: #eeefe8;
    background-color: #1a1a2b;
    padding: 50px;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #87bfba;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d47743;
    color: #1a1a2b;
    border-radius: 10px;
}

.button:hover {
    background-color: #eeefe8;
    border-color: #1a1a2b;
}