@font-face {
  font-family: Barlow;
  src: url(https://fonts.googleapis.com/css2?family=Barlow);
}
* {
  box-sizing: border-box;
  font-family: Barlow, sans-serif;
  margin:0;
}

a {
  color: #e74848;
}
a:visited {
  color: #e74848;
}
a:hover {
  font-color: #e74848;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  background-color: #010b17;
  background-image: url(./assets/logo.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 30%;
  background-attachment: fixed;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3vw 0  0 3vw;
  font-style: normal;
  width: 70vw;
}
.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 150%;
  text-align: left;
  color: #d9e1e4;
  width: 55vw;
}
.header > p > span, em {
  color: #fbe3bc;
}

.other {
  width: 32rem;
  margin: 3vw 1vw 0 0;
}

.blockquote {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    max-width: 620px;
    align-self: flex-start;
    margin-bottom: 7vh;
}

/* Blockquote header */
.blockquote h1 {
    font-family: 'Abril Fatface', cursive;
    position: relative; /* for pseudos */
    color: #e74848;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #fff;
    border: solid 2px;
    border-radius:20px;
    padding: 2rem;
}
.blockquote h1 span {
  font-family: 'Abril Fatface', cursive;
  color: #d9e1e4;
}
/* Blockquote right double quotes */
.blockquote h1:after {
    content:"";
    position: absolute;
    border: 2px solid #e74848;
    border-radius: 0 100% 0 0;
    width: 60px;
    height: 60px;
    bottom: -62px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.blockquote h1:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid #010b17;
    bottom: -3px;
    left: 50px;
    z-index: 2;
}



/* Blockquote subheader */
.blockquote h4 {
    position: relative;
    color: #d9e1e4;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:150px;
    padding-left:12px;
}

 
.blockquote h4:first-letter {
  margin-left:-12px;
}

@media screen and (orientation: portrait), (max-width: 900px) {
  html {font-size: 200%;}
  .container {
     flex-direction: column;
     justify-content: flex-start;
     background-position: top right;
     padding: 3rem 0 0 0;
     background-size: auto 5rem;
     background-attachment: scroll;
  }
  .header, .other, .blockquote, .header p {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    margin: 0 auto;
    font-size: 1.5rem;
  }
  .blockquote {max-width: none;padding-bottom:2rem;}
  .blockquote h1 {font-size: 7vw;padding: 4vw;}
  .blockquote h4 {font-size: 3.5vw;}
  .discord-widget{padding:0 1rem;}
}

