/* 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." */
   
@font-face {
  font-family: myFirstFont;
  src: url(https://maddieawesome.lol/Skynight.otf);
}



body {
  font-family: myFirstFont;
}


.navbar {
  
 
  text-align: center;
  padding: 5px 6px;
  font-size: 30px;
  transition: .5s ease;

  
  
}

a {
 
 transition: .5s ease;
  text-decoration: none; 
  color: blue;
  
}

a:hover {
 color: red;
 
}



.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}





.box {
  
  padding-left: 450px;
  padding-right: 450px;
  padding-top: 30px;
  padding-bottom: 30px;
  
  background: url(https://maddieawesome.lol/spongebox.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100% 100%;
  background-origin: content-box;
  
}

.logo {
 
font-size: 65px;
 
background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet, red);
background-clip: text;
color: transparent;
background-size: 200% auto;
animation: gradientAnimation 10s linear infinite;
-webkit-text-stroke: 3px black;
transition: .5s ease;

}

.logo:hover {
  
 
    transform: scale(1.1);
  
}

@keyframes gradientAnimation {
  
  0%{
   
   background-position: 200% 50%
    
  }
  
  100%{
    
   background-position: 0% 50%
    
  }
  
  }
  
  
  .spoken img{ 
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
    .spoken img:hover {
    transform: scale(1.1);
  }
  
  .forever img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .forever img:hover {
    transform: scale(1.1);
  }
  
  .paper img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .paper img:hover {
    transform: scale(1.1);
  }
  
  .act img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .act img:hover {
    transform: scale(1.1);
  }
  
  .another img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .another img:hover {
    transform: scale(1.1);
  }
  
  .body img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .body img:hover {
    transform: scale(1.1);
  }
  
  .cloud img{
  transition: .5s ease;
  float: left;
  width: 33.33%;
  padding: 5px;
  }
  
      .cloud img:hover {
    transform: scale(1.1);
  }

