/* 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: #184c95;
  color: #ffe72a;
  font-family: "Jersey 15", sans-serif;
  font-size: 40px
}
h1 {
  font-family: "Sixtyfour", sans-serif;
  font-size: 70px

}
.button-link-sylvianet {
  color: #ffe72a; 
  font-size: 70px; 
  margin: 4px 2px; 
  cursor: pointer; 
  text-decoration: none
  
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Creates two columns of equal width */
  gap: 20px; /* Adds space between grid items */
}

.left-section, .right-section {
  padding: 20px;
}

.left-section {
  background-color: #2aa6ce;
  border: 12px solid #001693;
  border-style: dotted;
  border-radius: 20px
}

.right-section {
  background-color: #001693;
  border: 12px solid #2aa6ce;
  border-style: dotted;
  border-radius: 20px
}
.button { 
  background-color: #fff034; 
  border: groove; 
  color: #008cc1; 
  padding: 20px 34px; 
  text-align: center; 
  text-decoration: wavy; 
  display: inline-block; 
  font-size: 20px; 
  margin: 4px 2px; 
  cursor: pointer; 
}
img {
  height: 200px;
}
    .style-spongebob {
      background-color: #feff31;
      color: #949500;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #8b520f;
    }

    .style-plankton {
      background-color: #00a057;
      color: #005a1c;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #002700;
    }
    .style-patrick {
      background-color: #ff9191;
      color: #b93e51;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #0fcc00;
    }
    .style-mrkrabs {
      background-color: #fd3434;
      color: #a00000;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #0073d6;
    }
    .style-squidward {
      background-color: #48c4a3;
      color: #1e655d;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #be8400;
    }
    .style-gary {
      background-color: rgb(255, 171, 187);
      color: #ad3648;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #b883ff;
    }
    .style-spongepat {
      background-color: #ff7b9e;
      color: #feff31;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #feff31;
    }
    .style-spongesquid {
      background-color: #feff31;
      color: #29bea7;
      font-weight: bold;
      padding: 8px;
      border-radius: 11px;
      border-bottom: 25px solid #29bea7;
    }