  @import url('https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bgColor: #363b49;
    --accentColor: #ffffff;
    --font: 'Montserrat', serif;
    --font-color: #ffffff;
    --bgHover: #ffffff;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bgColor);
    color: var(--accentColor);
    height: 100vh;
    overflow-y: auto;
}

#userPhoto {
    width: 320px;
    height: 80px;
//  border-radius: 0%;
    border: 0px solid #fff;
    margin-bottom: 25px;
}

#userName {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.25;
    font-family: var(--font);
    text-align: center;
    font-weight: bold;
    margin: 10px;
}


#links {
    max-width: 90%;
    width: 100%;
    text-align: center;
}

.link {
    display: block;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 15px;
    padding: 13px;
    font-size: 1rem;
    border: solid #ffffff 2px;
    border-radius: 5px;
    transition: 0.3s;
    color: #363b49;
    background-color: #ffffff;
    margin: 1.2em auto;
}

.link fas fa-home { 

        color: #fff363b49
}

/* Estilos para PC */
@media (min-width: 730px) {
    .link {
        width: 32%;
    }
}

/* Estilos para teléfonos */
@media (max-width: 500px) {
  #userPhoto {
    width: 200px; /* Adjust width as desired */
    height: 80px; /* Adjust height as desired */
  }
  .link {
    /* Existing code for link width on phones */
  }
  #userName {
      font-size: 0.9rem;
  }
}

.link:hover {
    color: #363b49;
    background-color: var(--font-color);
    font-weight: bold;
}

.link i {
    margin-right: 8px;
    font-size: 23px;
    color: #363b49;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); 
    font-weight: bold;
}

.link:hover i {
    color: #363b49;
}

a{
    color: #afa49a;
    text-decoration: none;
}

.footer {
    position: fixed;
    bottom: 10px;
    font-size: 17px;
}

