/* head.css */

#menu {
  width: 730px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#menu-items {
  padding: 0;
}

#logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#logo-pic {
  margin-right: 10px;
  margin-bottom: 5px;
}

#logo-text {
  padding: 10px 0;
  color: white;
  text-decoration: none;
}

#beta {
  font-size: 10px;
  color: #FFE556;
  padding: 4px 10px;
  border: 2px solid #FFE556;
  border-radius: 100px;
  margin-left: 10px;
  font-weight: bold;
}

/* footer.css */

.footer {
  margin-top: 50px;
  background-color: #4d73c5;
}

.footer-block {
  height: 200px;
  padding-bottom: 0;
  padding-top: 100px;
  width: 730px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
}

.footer-link-header {
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
}

.footer-list:first-child {
  padding-left: 0;
}

.footer-link-child {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 300;
}

@media (max-width: 740px) {
  .footer-block {
    height: 100%;
    width: 80%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 5%;
  }
}
