/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css');
:root {
    --bgColor:#1C1C1C;
    --accentColor: #E6E6E6;
    --font: 'Karla', sans-serif;
    --firstName: 'John';
    --lastName: 'Doe';
}

body{
    background-color: var(--bgColor);
}

#userPhoto{
    width: 110px;
    height: 110px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: var(--bgColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 2px;
    border-radius: 12px;
}

.link:hover{
    transform: scale(1.05);
    color: #1f1c2c;
}
h5{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    font-style: italic;;
}
h1{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
}
h6{
    text-align: center;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
}
.atrib{
    text-align: center;
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
    margin-bottom: 20px;
    padding: 17px;
}
/* Sección del evento */
#evento .link {
  margin-top: 20px; /* espacio entre el flyer y el botón */
}
#evento {
  margin-top: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#evento h2 {
  font-size: 1.8em;
  color: #E6E6E6;
  margin-bottom: 20px;
}
.flyer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flyer {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.flyer:hover {
  transform: scale(1.05);
}
/* Estilo para íconos */
.link i, #userName i {
  margin-right: 8px;
  color: #1877f2; /* azul para facebook */
}
#userName i {
  color: #e4405f; /* color de Instagram */
}
.link i.fa-whatsapp {
  margin-right: 8px;
  color: #25D366;
}
