/* CSS Reset */

/* prettier-ignore */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================================================ */

/* Base styles */
:root {
  --primary-color: #365481;
  --bg-primary-color: #1f3b66;
  --secondary-color: #3da4ac;
  --light-gray-color: #d9d9d9;
  --gray-600: #6a6a6a;
  --shadow-color: rgb(0 0 0 / 25%);
}

@font-face {
  font-family: Roboto;
  src:
    local("Roboto"),
    url("./fonts/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Quicksand;
  src:
    local("Quicksand"),
    url("./fonts/Quicksand-VariableFont.ttf") format("truetype");
  font-style: normal;
  font-display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

html,
body {
  font-size: 16px;
  overflow: hidden;
  text-size-adjust: 100%;
}

body {
  color: var(--gray-600);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-style: normal;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:focus-visible {
  outline: 2px dashed var(--secondary-color);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.main {
  background: linear-gradient(
    180deg,
    var(--bg-primary-color) 0%,
    var(--secondary-color) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.logo-container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 2rem;
  width: auto;
}

.logo {
  width: 130px;
  height: 114px;
}

.content {
  flex: 1;
  background: linear-gradient(
    180deg,
    var(--light-gray-color) 30.17%,
    #fff 100%
  );
  border: 4px solid var(--white, #fff);
  box-shadow: 0 4px 4px 0 var(--shadow-color);
  position: relative;
  width: auto;
  display: flex;
  justify-content: start;
  align-items: start;
}

.content-wrapper {
  padding: 30px;
  max-width: 35rem;
}

.content-title {
  max-width: 25rem;
  font-size: 3.1rem;
  line-height: 3.3rem;
  margin-bottom: 1.5rem;
}

.content-paragraph {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
}

@media (width >= 768px) {
  .logo-container {
    width: 40vw;
  }

  .logo {
    width: 140px;
    height: 134px;
  }

  .content {
    width: 60vw;
    align-items: center;
  }

  .content-title {
    margin-bottom: 2.5rem;
  }

  .content-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .main {
    flex-direction: row;
    align-content: stretch;
  }
}

@media (width >= 1024px) {
  .content-wrapper {
    padding: 50px;
  }

  .logo-container {
    padding: 3.5rem;
  }

  .logo {
    width: 230px;
    height: 214px;
  }

  .content {
    width: 60vw;
    padding-left: 4vw;
  }

  .content-title {
    font-size: 4.2rem;
    margin-bottom: 3.5rem;
    line-height: 4.4rem;
  }

  .content-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .main {
    flex-direction: row;
    align-content: stretch;
  }
}

@media (width >= 1366px) {
  .content {
    padding-left: 8vw;
  }
}
