* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: underline;
  color: #C0C0C0;
}
a:link, a:visited {
  color: #ccc;
}
a:hover {
  color: #00bfff;
}

.main-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-flex .nav-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  min-height: 2rem;
  overflow: hidden;
  background-color: #333333;
  position: sticky;
  width: 100%;
  flex-wrap: wrap;
  box-shadow: 0px 14px 5px -10px rgba(0,0,0,0.36);
  top: 0;
  z-index: 1;
}

.nav-flex img {
  max-width: 175px;
  max-height: 45px;
  object-fit: cover;
}
.nav-flex h1 {
  font-size: 1.2rem;
  font-weight: normal;
  color: white;
  padding: 0.5rem;
  text-align: center;
}


.section {
  border: 1px solid red;
  background-color: yellow;
  max-width: 90vw;
  padding: 10px;
}

.footer-flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #303030;
  align-items: center;
  font-size: 14px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.footer-flex .item-logo {
  padding-left: 1rem;
}

.footer-flex .item {
  padding: 5px;
}

.footer-flex .ul-links-flex {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  column-gap: 1rem;
}

.ul-links-flex li {
  text-align: center;
}

.footer-flex .ul-social-flex {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  padding-right: 1rem;
}

.ul-social-flex li {
  text-align: center;
}