body,
html {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
main .welcome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .welcome img {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 128px;
  aspect-ratio: 1/1;
}
main .welcome h1 {
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 2.2rem;
  line-height: 1.5;
  width: 100%;
  text-align: center;
}
main .welcome p {
  width: 100%;
  text-align: center;
  margin-block: 0 2rem;
}
main .welcome a {
  background-color: #e6e6e6;
  padding: 0.75rem 1rem;
  color: black;
  font-size: 1rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
main .welcome a:hover {
  background-color: #cccccc;
}
main .welcome a .icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main .welcome a .icon .left, main .welcome a .icon .right {
  position: relative;
  height: 22px;
  width: 12px;
}
main .welcome a .icon .left:before, main .welcome a .icon .right:before, main .welcome a .icon .left:after, main .welcome a .icon .right:after {
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #4d4d4d;
  content: "";
  display: block;
  top: 0;
  left: 0;
}
main .welcome a .icon .left:after, main .welcome a .icon .right:after {
  top: auto;
  bottom: 0;
  left: 0;
}
main .welcome a .icon .right {
  position: relative;
}