html {
  scroll-behavior: smooth;
} 

body {
    background-color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 18px;
    margin: 0;
}

header {
    background-color: #ECACAF;
    height: 150px;
    text-align: center;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 200px;
    padding: 0px;
}

a {
    color: #000;
    text-decoration: none;
    font-weight: medium;
    letter-spacing: 1px;
}

a:hover {
    text-decoration: underline;
}

.about {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    display: flex;
    align-items: flex-start;
}

.about img {
    width: 120px;
    object-fit: scale-down;
}

.about .caption {
    flex: 1;
    padding: 20px 20px 20px 40px;
}
.about .caption svg {
    height: 32px;
    width: 32px;
}

.menu {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    display: flex;
}
