/* 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." */

body {
  background-color: black;
  color: white;
  font-family: "PixelOperator";
  background-image: url("/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
  
h1 {
  background: rgba(0, 0, 0, 0.7);
  font-size: 40px;
  width: 400px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50;
  border: 1px dashed white;
  border-radius: 10px;
}

.h1l {
  background: rgba(0, 0, 0, 0.7);
  font-size: 40px;
  width: 400px;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50;
  border: 1px dashed white;
  border-radius: 10px;
}

.h1r {
  background: rgba(0, 0, 0, 0.7);
  font-size: 40px;
  width: 400px;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50;
  border: 1px dashed white;
  border-radius: 10px;
}

  
.button {
  font-family: "PixelOperator"; 
  background: rgba(0, 0, 0, 0.7);
  font-size: 25px;
  justify-content: center;
  margin-left: 10px;
  border: 1px dashed white;
  border-radius: 10px;
 
} 

.button2 {
  justify-content: flex-start;
  
}

.text {
  background: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  width: 600px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  border: 1px dashed white;
  border-radius: 10px;
  padding: 8px;
}

.profile {
  background: rgba(0, 0, 0, 0.7);
  border: 1px dashed white;
  border-radius: 10px;
  padding: 12px;
  width: 600px;
  margin: auto;
  align-items: stretch;
  display: grid;
  grid-template:
    "Header Quote"
    "Sidebar MainContent"
    "Sidebar MainContent"
    "Sidebar Footer"
    / 1fr 2fr;
  grid-gap: 10px;
}

header { 
  grid-area: Header;
  border: 1px solid white;
  border-radius: 10px;
  font-size: 15px;
  padding: 5px;
}

quote { 
  grid-area: Quote; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px;
}

pfp { 
  grid-area: Sidebar;  
  border: 1px solid white;
  border-radius: 10px;
}

main { 
  grid-area: MainContent; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px;

}

footer { 
  grid-area: Footer; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
}


a {
  text-decoration: none;
  color: #B2F257;
} 
  
img {
  border-radius: 9px;
  
}
.collapsible1 {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px;
  width: 70%;
  border: 1px dashed white;
  text-align: justify;
  color: white;
  font-family: "PixelOperator";
  border-radius: 10px;
  margin-top: 8px;
}

.active, .collapsible1:hover {
  background-color: #15aabf;
  color: #FD7E14;
}

.collapsible2 {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px;
  width: 70%;
  border: 1px dashed white;
  text-align: justify;
  color: white;
  font-family: "PixelOperator";
  border-radius: 10px;
  margin-top: 8px;
}

.collapsible2:hover {
  background-color: #B2F257;
  color: #15aabf;
}

.collapsible3 {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px;
  width: 70%;
  border: 1px dashed white;
  text-align: justify;
  color: white;
  font-family: "PixelOperator";
  border-radius: 10px;
  margin-top: 8px;
}

.collapsible3:hover {
  background-color: #FD7E14;
  color: #B2F257;
  
}

.content {
  padding: 8px;
  display: none;
  overflow: hidden;
  color: white;
  border: 1px white dotted; 
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  border-radius: 10px;
}

ul {
  display: inline-block;
} 

@media(orientation: portrait) {
  
  h1 {
  display: inline-block;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  font-size: 40px;
  width: 75vw;
  justify-content: center;
  margin-top: 10%;
  border: 1px dashed white;
  border-radius: 10px;
  padding: 10px;
  } 
  
  .button {
  font-family: "PixelOperator"; 
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  margin: auto;
  font-size: 25px;
  justify-content: center;
  border: 1px dashed white;
  border-radius: 10px;
  
  }
  
  .text {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  width: 300px;
  justify-content: center;
  margin-right: 5px;
  margin-top: 25px;
  border: 1px dashed white;
  border-radius: 10px;
  padding: 8px;
  
}

   
body {
  background-color: black;
  color: white;
  font-family: "PixelOperator";
  background-image: url("/background.png");
  background-repeat: no-repeat;
  background-size: auto;
  text-align: center;
}

.collapsible1 {
  font-size: 20px;

} 

.collapsible2 {
  font-size: 20px;
}

.collapsible3 {
  font-size: 20px;
}


.profile {
  background: rgba(0, 0, 0, 0.7);
  border: 1px dashed white;
  border-radius: 10px;
  padding: 12px;
  margin: auto;
  width: 200px;
  justify-content: center;
  flex-grow: 5;
  align-items: stretch;
  display: grid;
  grid-template:
    "Header" 
    "Quote"
    "Sidebar"
    "MainContent"
    "MainContent"
    "Footer"
    / 1fr 2fr;
  grid-gap: 10px;
}

header { 
  grid-area: Header;
  border: 1px solid white;
  border-radius: 10px;
  font-size: 15px;
  padding: 5px;
  justify-content: center;
}

quote { 
  grid-area: Quote; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px;
  justify-content: center;
}

pfp { 
  grid-area: Sidebar;  
  border: 1px solid white;
  border-radius: 10px;
  justify-content: center;
}

main { 
  grid-area: MainContent; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px;
  justify-content: center;

}

footer { 
  grid-area: Footer; 
  border: 1px solid white;
  border-radius: 10px;
  font-size: 12px;
  justify-content: center;
}


}
