/* CSS Reset Start */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  border: none;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  font-size: 62.5%; /* (62.5/100) * 16px = 10px */
  -webkit-text-size-adjust: none; /* for iOS Safari */
  text-size-adjust: none; /* for other mobile browsers */
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
}

h1 {
  font-size: 3.4rem;
  line-height: 3.4rem;
}

h2 {
  font-size: 3rem;
  line-height: 3.2rem;
}

h3 {
  font-size: 2.4rem;
  line-height: 2.6rem;
}

h4 {
  font-size: 2rem;
  line-height: 2.2rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 2rem;
}

h6 {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

p,
span {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

small {
  font-size: 1.4rem;
  line-height: 1.6rem;
}

label,
button,
select,
summary,
[type="radio"],
[type="submit"],
[type="checkbox"] {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

menu:not(article menu),
ol:not(article ol),
ul:not(article ul) {
  list-style: none;
}

menu,
ol,
ul {
  padding-left: 0;
}

article ol,
article ul {
  list-style-position: inside;
}
/* CSS Reset End */

/* Fonts Start */
@font-face {
  font-family: "Futura LT Light";
  font-style: normal;
  font-weight: normal;
  src: local("Futura LT Light"),
    url("../fonts/FuturaLT-Light.woff") format("woff");
}
/* Fonts End */

body {
  font-family: "Futura LT Light", sans-serif;
  color: #606060;
  background-color: #e6e6e6;
}

p {
  line-height: 1.9em;
  margin: 2.2rem 0;
}

a {
  color: #3d7fff;
}

.container {
  min-height: 100vh;
  margin: 0 5rem;
}

.container.last-container {
  min-height: auto;
}

.container > p {
  padding: 0 5rem;
}

@media screen and (max-width: 515px) {
  .container > p {
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* margin-bottom: 10rem; */
}

.column {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: flex-start;
}

@media screen and (max-width: 1075px) {
  .container {
    margin: 0 1.5rem;
  }

  .column {
    width: 100%;
    margin-bottom: 10rem;
  }
}

.banner {
  padding: 8rem 0;
}

.header-text {
  text-align: center;
  font-size: 2.7rem;
  line-height: 4rem;
  margin-bottom: 5rem;
}

.profile-img {
  width: 18.3rem;
  height: 18.3rem;
  border-radius: 50%;
  margin: 0 auto 5rem auto;
}

.profile-name {
  color: #ff6161;
  font-size: 2.6rem;
  font-family: "Futura LT Light", sans-serif;
  text-align: center;
  margin-top: 0;
}

.profile-details {
  font-family: "Futura LT Light", sans-serif;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 5rem auto;
}

footer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: #155de9;
  margin-top: 20rem;
  padding: 1.7rem;
}

footer > p {
  color: white;
  font-size: 1.4rem;
}
