/* 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-image: url("https://frogponderings.neocities.org/images/DitheredFrog01.gif");
    image-rendering: optimizeSpeed;
  font-family: Courier New;
  color: #064514;
}


/* Hyperlink settings */  
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}  
  
/* Style the element with the id "container" */  
#container {
  text-align: center;
    margin: 0 auto;
    padding: 40px;
    background: none;
}

/* Style the element with the id "containerblock" */
#containerblock {
  text-align: center;
  background-color: lightgreen;
  padding: 5px;
  opacity: 0.5;
}

/* Animations */  
.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}


/* Mailbox customisation */  
.folder,
.email-preview {
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.5em;
  margin-bottom: 0.5em;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.folder:hover,
.email-preview:hover {
  background-color: #eee;
}
.folder,
.email-preview {
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.5em;
  margin-bottom: 0.5em;
  background-color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.folder:hover,
.email-preview:hover {
  background-color: #eee;
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
