/* ======= Global Styles ======= */
:root {
  --color-primary: #304352;
  --color-secondary: #d7d2cc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

p {
  line-height: 1.5;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col {
  width: 100%;
}

.col+.col {
  margin-left: 2em;
}

.section+.section {
  margin: 5em 0;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.5em 1.3em;
}

.btn:hover,
.btn:focus {
  opacity: 0.7;
}

/*  =======  Hero Section ======= */

#hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
}

.hero__content {
  display: flex;
  align-items: center;
}

.socrates-3dmodel {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ======= main Section ====== */

#main {
  background-color: #fff;
  color: #000;
  padding: 5em 0;
}

.main__text {
  text-align: justify;
  text-justify: inter-word;
}

/* ======= Quote Section ====== */

#quote {
  min-height: 100vh;

  display: flex;
  align-items: center;
}

.quote__content {
  display: flex;
  justify-content: center;
}

.quote__text h3 {
  font-size: 2rem;
}

/* ======= Footer Section ====== */

.footer {
  font-size: small;
  text-align: center;
  padding-bottom: 1em;
}

@media (max-width: 40em) {
  .row {
    display: block;
  }

  .socrates-3dmodel {
    display: none;
  }

  p {
    font-size: .9rem;
    line-height: 1.3;
  }

  .quote__text h3 {
    font-size: 1.3rem;
  }
}