body {
    margin: 0;
    padding: 0;
    background-color: rgb(235, 235, 235);
    font-family: 'Cuprum', sans-serif;
}

#info {
    background-color: #ffffff;
    display: flex;
    gap: 100px;
    padding-left: 20px;
}

#info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24,
}

#info span {
    color: red;
}

#header-container {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 20px;
}

#header {
    background-color: #ffffff;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo a {
    color: red;
    font-size: 50px;
    letter-spacing: -0.2em;
    text-decoration: none;
    /* font-family: ; */
}

#nav {
    margin-right: 10vw;
}

#header #nav a {
    text-decoration: none;
    color: black;
    margin-right: 50px;
    transition: .2s ease-in-out;
}

#header #nav a:hover {
    color: red;
}