* {
  box-sizing: border-box;
}

@font-face {
  font-family: otama;
  src: url('Otama-ep.woff');
}

body,
html {
  margin: 0px;
  padding: 0px;
  background-color: rgb(65, 0, 153);
}

header {
  padding: 0px 0px 10px;
  width: 100%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.logo::before,
.logo::after {
  content: '';
  display: inline-block;
  height: 1px;
  background-color: white;
  position: relative;
  top: 1px;
  width: 100%;
}

.logo-link {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0px 10px;
  max-width: 350px;
  width: 100%;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 32px;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 90px;
  height: 56px;
}

main {
  background-color: rgb(65, 0, 153);
  color: white;
  font-family: sans-serif;
  display: flex;
  min-height: 95vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 25px;
}

@media screen and (min-width: 768px) {
  .top-body {
    padding: 100px;
    padding-top: 0;
    margin-top: 100px;
    max-width: 1200px;
  }
}

.title-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .title-block {
    padding: 50px 16px 0px;
  }
}

h1 {
  margin: 0px auto;
  font-weight: 400;
  font-size: 28px;
  font-family: otama, serif;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

.subtitle {
  margin-top: 10px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .subtitle {
    margin-top: 26px;
    font-size: 18px;
  }
}

.bottom-body {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  min-height: 50vh;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bottom-body {
    padding: 50px 100px;
  }
}

.arrow {
  font-size: 72px;
}

footer {
  background-color: rgb(29, 30, 31);
  color: white;
  font-family: sans-serif;
  padding: 30px 15px;
  text-align: left;
  padding: 60px;
  padding-bottom: 30px;
  width: 100%;
  bottom: 0;
}

footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

footer li {
  padding: 6px 0;
}

footer a {
  text-decoration: none;
  color: whitesmoke;
}

.copyright {
  color: rgb(144, 144, 147);
  font-size: 16px;
  margin-top: 30px;
}
