@import url('https://use.typekit.net/waw2dco.css');

:root {
  --red: #990000;
  --white: #f5f5f5
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--red);
  background: url("assets/OU-Background-Red.png");
  background-repeat: repeat;
  background-size: cover;
  margin: auto;
  width: 100%;
}

h1{
  font-family: Abolition, sans-serif;
  font-size: 76px;
  letter-spacing: 2px;
}

h2{
  font-family: Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
}

h3{
  font-family: Abolition, sans-serif;
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--red) !important;
}

p{
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

/* JUMBOTRON / HEADER */

.jumbotron {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  height: 70vh;
  width: 100%;
  z-index: -2;
}

.flush-left {
  width: 40%;
}

.flush-left img {
  justify-content: left;
  position: relative;
  width: 75vh;
  top: -150px;
  left: -150px;
  z-index: -1;
}

.flush-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 60%;
  padding: 0px 50px;
}

.flush-right img {
  width: 400px;
  position: relative;
  padding-top: 30px;
}

/* BODY */
.main {
  z-index: 2;
  background-color: var(--white);
  background-image: url("https://i.pinimg.com/736x/c8/cd/80/c8cd80c1ff123b37d5be09783e812045.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
}

.tool {
  padding: 20px 0px;
  display: flex;
  flex-direction: row;
}

/* DEMANDS */
.demands {
  font-weight: bold;
  width: 60%;
}

ol {
  font-size: 26px;
  line-height: 34px;
}

.button-group {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: right;
  align-items: flex-end;
}

.button {
  font-family: Arial, sans-serif;
  color: var(--white);
  background-color: var(--red);
  border: none;
  padding: 15px 30px;
  margin: 10px;
  font-weight: bold;
  font-size: 21px;
  width: 75%;
}

button {
  font-family: Arial, sans-serif;
}

/* FAQ */

.faq{
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid black;
}

.collapsible {
  width: 100%;
  background-color: transparent;
  color: var(--red);
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  padding: 10px 0px;
}

.collapsible::after {

  color: var(--red) !important;
  font-weight: bold;
  float: right;
  align-self: flex-end;
  margin-left: 5px;
  content: '+';
}

.active::after {
  align-self: flex-end;
  color: var(--red);
  content: '-';
}

.content {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  font-size: 21px;
  font-weight: regular;
}

.essay{
  width: 30vw;
  margin: 15px;
}

/* FOOTER */

.footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 15vh;
}

.footer .logos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer p{
  text-align: center;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}

.rw-sticker {
  height: 10vh;
  margin: -50px 0px 0px 50px;
}

.ou-flag-footer{
  height: 10vh;
  margin: -50px 50px 0px 0px;
}

/* MOBILE */

@media screen and (max-width: 768px) {
  .jumbotron {
    height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .flush-left {
    width: 100%;
    height: 40vh;
    text-align: center;
  }

  .flush-left img {
    justify-content: center;
    width: 100%;
    max-width: 370px;
    top: -60%;
    left: 0px;
    z-index: -1;
  }

  .flush-right {
    display: block;
    width: 90%;
    justify-content: center;
    padding: 20px;
    margin-top: -75px;
  }

  .flush-right img {
    width: 90%;
    max-width: 400px;
    padding: 0px;
  }

  .flush-right .header-text {
    padding: 0px;
    text-align: left;
  }

  .tool {
    padding: 0px;
    display: flex;
    flex-direction: column;
  }

  .demands{
    width: 100%;
  }

  .button-group{
    width: 100%;
    margin-bottom: 25px;
  }

  .button{
    width: 100%;
    margin: 0;
  }

  h1{
    font-size: 55px;
    line-height: 64px;
  }

  h2 {
    font-size: 21px;
    line-height: 26px;
  }

  h3 {
    font-size: 46px;
    line-height: 55px;
  }

  ol {
    font-size: 21px;
    line-height: 26px;
  }
  .button-group {
    flex-direction: column;
  }
  
  .collapsible {
    font-size: 21px;
  }

  .content{
    font-size: 16px
  }
  
  .main {
    padding: 25px;
  }
  
  .essay{
    width: 100%;
    margin: 10px;
  }
  .essay-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
  }

  .footer .logos{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer p{
    text-align: center;
    color: var(--white);
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 50px;
  }

  .rw-sticker {
    height: 5vh;
    margin: -20px 0px 0px 25px;
  }

  .ou-flag-footer{
    height: 5vh;
    margin: -20px 25px 0px 0px;
  }
}

/* TABLET */

  @media screen and (min-width: 765px) and (max-width: 1024px) {
  .jumbotron {
    height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .flush-left {
    width: 100%;
    height: 40vh;
    text-align: center;
  }

  .flush-left img {
    justify-content: center;
    width: 75%;
    max-width: 500px;
    top: -80%;
    left: 0px;
    z-index: -1;
  }

  .flush-right {
    display: block;
    width: 90%;
    justify-content: center;
    padding: 30px;
    margin-top: 0px
  }

  .flush-right img {
    width: 75%;
    max-width: 500px;
    padding: 0px;
  }

  .flush-right .header-text {
    padding: 0px;
    text-align: left;
  }

  .tool {
    padding: 0px;
    display: flex;
    flex-direction: column;
  }

  .demands{
    width: 100%;
  }

  .button-group{
    width: 100%;
    margin-bottom: 25px;
  }

  .button{
    width: 100%;
    margin: 0;
  }

  h1{
    font-size: 64px;
    line-height: 76px;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
  }

  h3 {
    font-size: 40px;
    line-height: 46px;
  }

  ol {
    font-size: 26px;
    line-height: 34px;
  }
  .button-group {
    flex-direction: column;
  }

  .collapsible {
    font-size: 21px;
  }

  .content{
    font-size: 16px
  }

  .main {
    padding: 25px;
  }

  .footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 12vh;
  }

  .footer .logos{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer p{
    text-align: center;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
  }

  .rw-sticker {
    height: 6vh;
    margin: -25px 0px 0px 25px;
  }

  .ou-flag-footer{
    height: 6vh;
    margin: -25px 25px 0px 0px;
  }
}