body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
}

h1 {
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 30px;
}

.menu {
    background-color: rgb(154, 154, 238);
    overflow: auto;
}

.menu ul {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
}

.menu li {
    display: inline-block;
    text-align: center;
}

.menu li a {
    display: inline-block;
    height: 20;
    width: 150px;
    color: rgb(14, 14, 15);
    background-color: white;
    padding: 10px;
    margin: 4px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
}

.menu li a:hover {
    background-color: rgb(206, 206, 250);
}

.main {
    overflow: auto;
    text-align: center;
    background-color: rgba(233, 233, 233, 0.884);
    padding-top: 20px;
    padding-bottom: 20px;
}

.main h2 {
    overflow: auto;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    padding: 10px;
    background-color: rgb(174, 174, 253);
    color: black;
    font-weight: bold;
    text-align: center;
    border-radius: 40px;
}

.photos {
    overflow: auto;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    background-color: rgba(233, 233, 233, 0.884);
}

.photos img {
    border-style: solid;
    border-width: 6px;
    border-color: black;
    border-radius: 6px;
    margin: 2px;
    object-fit: cover;
    object-position: top;
}

.photos h2 {
    color: black;
    font-size: 28px;
}

.footer {
    overflow: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: rgb(154, 154, 238);
}

.footer ul {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
}

.footer li {
    display: inline-block;
    text-align: center;
}

.footer li a {
    display: inline-block;
    height: auto;
    width: auto;
    color: black;
    background-color: white;
    padding: 10px;
    margin: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.footer li a:hover {
    background-color: rgb(198, 198, 252);
}