@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: rgb(255, 115, 0);
  color: #222;
}

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

header {
  background: linear-gradient(135deg, #070a4d, #2e39ff);
  color: #fff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 25% 25%;
}

main {
  flex: 1;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.evento {
  background: white;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.evento:hover {
  transform: scale(1.01);
}

.evento-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.evento h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffd000;
}
.evento h2 {
  margin-top: 0;
  color: #333;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
}

footer .social {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

footer .social a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
  border-radius: 50%;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
  border-radius: 50%;
}
.fa-instagram {
  background: #ff0037;
  color: white;
  border-radius: 50%;
}
.fa-tumblr {
  background: #000305;
  color: white;
  border-radius: 50%;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: linear-gradient(135deg, #070a4d, #2e39ff);
  overflow: hidden;
  /*Rounded corner*/
  border-radius: 0 0 10% 10%;
  /*Shadow*/  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /*Flexbox*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /*Responsive*/
  z-index: 1000;
  transition: background-color 0.3s ease;
  position: sticky;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #ffd000;
  color: white;
}