.Accesos_12 {
    display: flex;
    min-height: 70px;
    background-color: black;
    justify-content: space-between;
    align-items: center;
    padding: 1px;
}

@media (max-width:600px) {
    .Accesos_12 {
        flex-direction: column;
    }
}

.Accesos_12 a {
    color: white;
    text-decoration: none;
    user-select: none;
    align-items: right;
    padding: 10px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: 0.3s
}

.Accesos_12 a:hover {
  color: #4e2781;
}

/* este es el menu del banner de publicidad*/

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 430px;
}

section img {
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 8;
    transition: .3s ease;
}

section img:hover {
    cursor: pointer;
    width: 150px;
    opacity: 1;
    filter: contrast(120%);
}
@media (max-width:600px) {
    section {
        flex-direction: column;
    }
}

/*este es el estilo de mi menu de usuario */

.Avatar_1 {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-bottom: 1px solid rgb(93, 24, 24);
    cursor: pointer;
}
.Avatar {
    position: absolute;
    top: 120px;
    right: 110px;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.sidebar p {
    position: absolute;
    top: 155px;
    right: 113px;
}

.sidebar {
    height: 75%;
    width: 0;
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    background: #222;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.sidebar a {
    padding: 12px 32px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    transition: 0.6s;
}
.sidebar a:hover, .sidebar .closebtn:hover {
    background: #444;

}
.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}
body.sidebar-open #sidebar {
    width: 250px;
}
.sidebar a {
    position: relative;
    top: 135px;
    left: 10px
}
.peticion-btn {
    position: absolute;
    background-color: #132684;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 4px 12px;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.6s, transform 0.2s;
}
.peticion-btn:hover {
    background-color: #10b9f7;
    transform: translateY(-2px) scale(1.04);
}

/*este es el menu de los Hubs de la plataforma*/

.Hubs {
  width: auto;
  height: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

@media (max-width:600px) {
    header {
        flex-direction: column;
    }
}

/* este es la animacion de transicion fluida entre paginas */

@view-transition {

  navigation: auto;
}

: : view-transition-group(*) {
    animation-duration: 1s;
}

: : view-transition-old(root) {
    animation-duration: slid-out-to-left 1s forwards;
}

: : view-transition-old(root) {
    animation: slid-out-to-right 1s forwards;
}

@keyframes slid-out-to-left {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slid-out-to-right {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(-100%);
    }
}
