/* 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: white;
  color: black;
  font-family: Verdana;
  background-image: url(black-sparkles.jpg);
  background-size: 140px;
  color: white;
}

.container {
    display: flex;
    gap: 30px; 
}

.left-sidebar, .right-sidebar {
    height: 100%; 
    flex: 0.5;
    min-height: 100vh;
    padding: 30px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
    background-color: black;
    box-shadow: 4px 4px #1e1e1e;
    border: 4px solid #333333;
    transition: all 0.3s ease;
    align: center;
    justify-content: flex;
}

.navigation {
    flex-direction: column;
    padding: 10px;
    background-color: #333333;
    border: 4px solid #1e1e1e;
    text-align: center;
}

.main {
    flex: 1.5;
    padding: 30px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
    background-color: black;
    box-shadow: 4px 4px #1e1e1e;
    border: 4px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.intro {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px; 
    background-color: #333333;
    border: 4px solid #1e1e1e;
    text-align: center;
    margin-bottom: 10px;
}

.recent {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px; 
    background-color: #333333;
    border: 4px solid #1e1e1e;
    text-align: center;
    margin-bottom: 300px;
}

.top {
    background-color: black;
    box-shadow: 4px 4px #1e1e1e;
    border: 4px solid #333333;
    align-items: center;
    margin: auto;
    width: 50%;
    max-width: 1700px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.header {
    text-align: center;
}

.warning {
    font-size: 9px;
    padding-top: 1px;
    gap: 100px;
}

.subheader {
    text-align: center;
    padding: 10px
}
  

.website-center {
  text-align: center;
  align-items: center;
  margin: auto;
  width: 50%;
}

@media only screen and (max-width: 620px) {
  /* For mobile phones: */
  .left-sidebar, .right-sidebar, .website-center, .main, .top, .header, .navigation{
    width: 100%;
  }
  
  