body {
    background-color: #edf5e1;
}

* {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

nav {
    background-color: #5cbd95;
    display: flex;
    align-items: center;
    height: 79px;
    justify-content: space-between;
    padding: 0 16px;
}

#logo {
    width: 100%;
    height: 50px;
}

.nav-link {
    color: #05386b;
    font-size: 24px;
}

.nav-link:hover {
    opacity: .7;
}

.nav-link {
    margin-right: 24px;
}

.nav-link:last-of-type {
    margin-right: 16px;
}

#logo-prototype {
    width: 76px;
    height: 65px;
    border-radius: 50%;
    background-color: #000000;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    height: 94px;
    background-color: #5cbd95;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.footer span {
    font-size: 24px;
    color: #05386b;
    font-weight: 400;
}

.subscribe-to-newsletter {
    text-align: center;
    margin-bottom: 81px;
}

.newsletter-header {
    font-size: 36px;
    font-weight: 600;
}

.newsletter-subheader {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 13px;
}

.subscribe-button {
    font-size: 18px;
    font-weight: 600;
    height: 35px;
    text-transform: uppercase;
    padding: 0 10px;
    background-color: #05386b;
    color: #edf5e1;
    border: none;
}

.subscribe-input {
    width: 272px;
    height: 31px;
    margin-right: 8px;
    padding: 0 10px;
    font-style: italic;
}

.subscribe-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #05386b; /* Firefox */
  }
  
  .subscribe-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #05386b;
  }

.input-and-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
}

a {
    color: #05386b; 
}