/* 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 {
  Margin: 0;
  background-image: url('https://file.garden/aSfbYtqucTCqhFcq/ezgif-63f31a89d22ebff1.gif');
  background-size: cover;
  background-attachment: fixed;
  height: 100px;
  padding: 0;
  color: black;
  font-family: Verdana;
}

h1{
  font-family: 'Iceland', sans-serif;
  text-align: center;
  color: white;
}

h2{
  color: white;
  font-family: 'Iceland', sans-serif;
}

h3{
  color: white;
  font-family: 'Iceland', sans-serif;
}

p{
  font-family: "Science Gothic", sans-serif;
  color: white;
}

.navbar ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 25;
  overflow: hidden;
  text-align: center;
}
.navbar a{
  font-family: 'Iceland', sans-serif;
  font-size: 30px;
  color: white;
  text-decoration: none;
  padding: 15;
  display: flex;
  text-align: center;
  margin: 0 35px;
  transition: 0.3s;
}
.navbar a:hover{
  text-shadow: 0 0 9px #0FEB00;
}
.navbar li{
  float: left;
}

section{
  display: flex;
  display: block;
  display: inline-block;
  position: relative;
  background-color: black;
  padding: 10px;
  margin: 0px;
  width: 50%;
  border-style: solid;
  border-width: 3px;
  border-color: white;
  clear: both;
  
}

aside{
  display: flex;
  background-color: black;
  flex-direction: column;
  float: left;
  margin: 15px;
  margin-top: 1px;
  padding: 15px;
  width: 20%;
  border-style: solid;
  border-width: 3px;
  border-color: white;
  clear: both;
}

aside a{
  font-family: "Science Gothic", sans-serif;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  color: blue;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  color: #fff;
}

.footer {
  text-align: center;
}

.aligned-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.aligned-header img {
  margin-right: 10px;
}

@media (max-width: 600px) {
  body {
    background-size: cover;
    background-attachment: scroll;
    height: auto;
  }
  
    .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  
  .navbar a {
    font-size: 22px;
    margin: 10px 0;
    padding: 10px;
  }
  
  section {
    width: 90%;
    margin: 10px auto;
    display: block;
  }
  
  aside {
    width: 90%;
    margin: 10px auto;
    float: none;
  }

  aside a {
    font-size: 18px;
  }

  h1 {
    font-size: 30px;
    padding: 0 10px;
  }

  p {
    font-size: 16px;
  }

  footer {
    padding: 15px;
    text-align: center;
  }
}