body {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;

  background-position: center;

  font-family: "IBM Plex Mono", monospace;
}

body * {
  outline: none;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.logo,
.welcome,
.menu-btn,
.my-signature {
  margin: auto;
}

a {
  text-decoration: none;
}

.logo img {
  height: auto;
  margin-top: 25px;

  max-width: 66vw;
  max-height: 45vh;
}

@media only screen and (min-width: 575px) {
  .logo img {
    width: 400px;
  }
}

.welcome {
  margin-bottom: 25px;

  padding-left: 15px;
  padding-right: 15px;

  font-weight: 600;

  font-size: 26px;
  letter-spacing: 1px;

  color: #000000c4;
}

.menu-btn {
  margin-top: 15px;
  margin-bottom: 25px;

  padding: 12px 20px;

  font-weight: 700;

  letter-spacing: 2px;

  background-color: #282828;
  color: #e0d6c6;
}

.menu-btn:hover {
  background-color: #000000;
  color: #e0d6c6;
}

.my-signature {
  margin-bottom: 60px;

  font-weight: 700;

  font-size: 12px;

  color: #1d1d1db4;
}

.my-signature:hover {
  color: #000000;
}

@media only screen and (min-width: 1024px) {
  .my-signature {
    margin-bottom: 20px;
  }
}
