:root {
  
  background-image: url('gifs-and-images/brickbackground.jpg');
  color: #ffffff;
   background-repeat: repeat;
   background-size: 225px;
  
}

* {
 box-sizing: border-box;
 display: flex;
  justify-content: center;
   align-items: center;
   flex-direction: row;
}

a:visited {
  color: white; 
}

a:link {
  color: white;
  text-decoration: none; /* Removes the default underline */
}

.grow-link {
  display: inline-block;          /* Crucial: Allows the link to scale */
  font-size: 33px;
  transition: transform 0.3s ease; 
}

.grow-link:hover {
  /* Scales the link up to 1.2 times its original size (20% bigger) */
  transform: scale(1.2); 
}

body {
 display: flex;
 flex-direction: column;
}

.header {
 background-image: url('gifs-and-images/banner-header.png');
 background-size: 1920px;
  background-repeat: no-repeat;
  min-height: 200px;
  min-width: 1500px;
  margin-bottom: 20px;
  color: white;
  font-family: 'kiwisoda', sans-serif;
  font-size: 130px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 3);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 3);
  display: flex;
  justify-content: center;
   align-items: center;
}

@font-face {
  font-family: 'kiwisoda';
  src: url('fonts/KiwiSoda.ttf') format('truetype');
}

@font-face {
  font-family: 'romanantique';
  src: url('fonts/RomanAntique.ttf') format('truetype');
}

.container {
   display: flex;
  justify-content: center;
   align-items: center;
   max-width: 1160px;
}


main{
  display: flex;
 background-color: #08419a;
 width: 1160px;
 border-radius: 16px;
 padding: 1em;
}

#Announcements {
  display: flex;
  flex-direction: column;
  width: 800px;
  background-color: #00b5e0;
  border-radius: 16px;
   text-align: center
}

#Announcements h2 {
   font-family: 'kiwisoda', sans-serif;
}

#aboutme h2 {
   font-family: 'kiwisoda', sans-serif;
}

#aboutme {
   display: flex;
  flex-direction: column;
  width: 800px;
  background-color: #00b5e0;
  border-radius: 16px;
   text-align: center
}

#footer {
   background-color: #00b5e0;
  border-radius: 16px;
   width: 1400px;
   margin: 20px;
     font-family: 'kiwisoda', sans-serif;
     text-size: 25px;
}

p {
   font-family: 'romanantique', sans-serif;
   font-size: 22px;
}

nav {
 display: block;
}

.nav-side {
  display: flex;
 background-color: #00b5e0;
 padding: 30px;
 margin: 20px;
  border-radius: 16px;
  font-family: 'kiwisoda', sans-serif;
  font-size: 33px;
}

   .Smaller-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    align-items: center;
}

.footer {
  background-color: #00b5e0;
  border-radius: 16px;
}