/* style.css */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    padding: 20px;
}

.caption {
    margin-bottom: 20px;
}

.caption h1 {
    font-size: 2rem;
    margin: 0;
}

.line {
    width: 100%;
    height: 10px;
    background-color: black;
    margin-top: 20px;
    margin-bottom: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

nav ul li a:hover {
    color: #5c3d8e;
    animation: buttonGrow 0.3s ease-in-out; /* Apply the animation */
}

@keyframes buttonGrow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

footer {
    text-align: center;
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    margin: 0 10px;
    font-size: 1.5rem;
    color: black;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#content {
  animation: fadeIn 0.5s ease-in-out; /* Apply the animation */
}
