:root {
  --white: #fff;
  --black: #000;
  --yellow: #f1a024;
  --blue: #161825;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  width: 100%;
}

a,
a:visited {
  color: inherit;
  text-decoration: inherit;
}

section a,
section a:visited {
  text-decoration: underline;
}

@media (max-width: 480px) {
  body {
    background: var(--black);
  }
}

@media (min-width: 481px) {
  body {
    background: -webkit-linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(45, 48, 63, 1) 63%,
      rgba(140, 149, 178, 1) 100%
    );
  }
}

body {
  margin: 0;
  color: var(--white);
  font-family: monospace;
  font-size: 1.3em;
}

.mail {
  margin-top: 10px;
  margin-bottom: 10px;
}

.flex,
section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

section {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

section p {
  max-width: 750px;
}

.half-img,
.half-text {
  width: 50%;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
}

.text {
  padding: 1rem 1.5rem;
}

ul {
  list-style-type: disc;
}

footer {
  padding-top: 20px;
  text-align: center;
  margin-top: 30px;
  margin: auto;
  width: 50%;
  font-size: 0.85em;
}

.quote {
  padding-top: 10px;
  font-size: 0.85em;
  width: 80%;
  text-align: center;
  margin: auto;
}

.image-logo-wrapper {
  width: 250px;
  margin: auto;
}

.image-logo-wrapper img {
  width: 100%;
}

.image-wrapper {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.image-wrapper img {
  object-fit: scale-down;
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 1500px) {
  body {
    font-size: 1.15em;
  }

  .image-logo-wrapper {
    width: 250px;
  }

  .half-text {
    overflow: scroll;
  }
}

@media screen and (max-width: 1100px) and (orientation: portrait),
  screen and (max-width: 1000px) and (orientation: landscape) {
  .half-img,
  .half-text {
    width: 100%;
    overflow: scroll;
  }

  body {
    font-size: 1.2em;
  }

  .image-logo-wrapper {
    width: 200px;
  }

  main {
    width: 60%;
    margin: auto;
  }

  .flex,
  section {
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
  }

  footer {
    width: 80%;
  }

  .image-wrapper {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  main {
    width: 100%;
  }
}
