/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
  
:root {
  --bodyFont: 'Rubik', sans-serif;
  --titleFont: 'Josefin Sans', serif;
}
    

.base {
  width: 800px;
  padding: 30px;
  box-sizing: border-box;
  font-size: 16px; 
  font-family: 'Rubik'; 
  margin-left: auto; 
  margin-right: auto; 
  border: 1px solid #ff4444;
}

.top {
  clear: both; 
  display: flex;
}

.logo-side-text {
  background: #ff4444; 
  color: #5a081c; 
  font-family: 'Josefin Sans'; 
  height: 33.3333px; 
  float: left; 
  font-size: 20px; 
  font-weight: bold; 
  display: table-cell; vertical-align: middle; line-height: 38.3333px; /* alignment */ 
  padding-left: 5px; padding-right: 5px; 
  letter-spacing: -1px;
}

body {
  background-color: #5A081C;
  color: #ff4444;
  padding: 25px;
}
      
hr {
  border: 1px solid #fae965;
}
          
.homepage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3% 0;
}
      
p, h2, h3, h4, h5 {
  font-family: var(--bodyFont);
}

h1 {
  font-family: var(--bodyFont);
  font-weight: 900;
  text-transform: uppercase;
}
      
.titlewide {
  background-color: #fae965; color: #5A081C; padding-left: 5px; padding-right: 5px;
}
      
.titlenarrow {
  background-color: #fae965; color: #5A081C; padding-left: 5px; padding-right: 5px;
}
      
/* Extra small devices (phones, 627px and down) */
@media only screen and (max-width: 627px) {
  .titlewide {background: rgba(250, 233, 101, 1);}
  .base {width: 100%; }
}
    
/* Medium devices (landscape tablets, 627px and up) */
@media only screen and (min-width: 627px) {
  .titlewide {background: rgba(250, 233, 101, 0);}
}      
    
      .header {
        background-image: url(https://cdn.discordapp.com/attachments/758457825835483136/1072552535539322880/New_Project_217_4F7F9D3.png);
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        padding-top: 30px;
        padding-bottom: 10px;
        background-size: cover;
        background-position: center;
        position: sticky;
      }
      
      a {
        color: #ff4444;
      }
      
      a:hover, a:active {
        color: #fae965;
      }
          

body {
  background-color: #5A081C;
  color: #fae965;
  font-family: Rubik;
  padding: 15px;
}

h1 {
  font-family: Josefin Sans;
  color: #ff4444;
  font-size: 2em;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-family: Josefin Sans;
  color: #ff4444;
  font-size: 1.5em;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
}

h3 {
  font-family: Rubik;
  color: #ff4444;
  font-weight: 800;
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-family: Rubik;
  color: #fae965;
  font-size: 1em;
  font-weight: 400;
}

a {
  background-color: #fae965;
  padding-right: 3px;
  padding-left: 3px;
  color: #5a081c;
  text-decoration: none;
}

@keyframes linkhover {
  from {
    color: #5a081c;
    }
  to {
    color: #ff4444;
    }
}

a:hover {
  animation-name: linkhover;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  color: #ff4444;
}


hr {
  background: linear-gradient(to right, #ff4444, #fae965);
  height: 4px;
  border-style: none;
}  

