* {
    box-sizing: border-box;
    padding: 0;
    border: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: monospace;
    background-color: hsl(201, 78%, 86%);
    color: hsl(0, 0%, 0%);
}

img {
    max-width: 100%;
}

.contenedora {
    max-width: 65rem;
    margin-inline: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

#linkunma {
    color: hsl(0, 0%, 0%);
    background-color: hsl(196, 60%, 56%);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    display: block;
    width: 20rem;
    padding-block: 0.25em .5em;
    border-radius: 15px;
    text-align: center;
    transition: background-color 0.7s ease, color 0.3s ease;
    text-decoration: none;
    font-size: 15px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#linkunma:hover {
    color: hsl(0, 0%, 0%);
    background-color: rgb(216, 237, 251);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    transition: 0.5s;
}

.headermod {
    display: grid;
    grid-template-columns: 8rem 1fr;
    justify-content: space-between;
    align-items: center;
    border: solid 3px hsl(231, 44%, 31%);
    background-color: hsl(200, 66%, 71%);
    box-shadow: 0px 3px 0 hsl(231, 44%, 31%);
    margin-inline: auto;
    padding: 1rem;
}

h1 {
    font-size: xx-large;
    margin-bottom: 1rem;
    border-block-end: solid 3px hsl(225, 100%, 24%);
    padding-bottom: 0.5rem;
    padding-top: 1rem;
}

h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-block-end: solid 3px hsl(225, 100%, 24%);
    padding-bottom: 0.5rem;
}

h1,
h2 {
    color: hsl(225, 100%, 24%)
}

h3 {
    margin-top: 0.5rem;
}

#logodgpc {
    display: block;
    width: min(100%, 7.5rem);
    padding: .27rem .5rem;
    border-radius: 0.5rem;
    border: solid 3px hsl(231, 44%, 31%);
    background-color: hsl(196, 60%, 56%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
}

.headerbuttons {
    display: grid;
    margin-inline-start: auto;
    width: min(100%, 30rem);
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    gap: .25rem;
    flex-wrap: wrap;
    list-style: none;
}

header nav ul li a {
    color: hsl(0, 0%, 0%);
    background-color: hsl(196, 60%, 56%);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    display: block;
    padding-block: 0.5rem .5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: background-color 0.7s ease, color 0.3s ease;
    margin-right: 13px;
    margin-left: auto;
    text-decoration: none;
    font-size: 20px;
}

header nav ul li a:hover {
    color: hsl(0, 0%, 0%);
    background-color: rgb(216, 237, 251);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    transition: 0.5s;
}

.cerolist {
    list-style: none;
}

#seccionesplan {
    margin-left: 2rem;
}

.equipocolor {
    background-color: rgb(149, 196, 227);
}

.mocksplan {
    width: 10rem;
}

.teamdiv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
    gap: 1rem;
    padding-bottom: 1rem;
}

.separacion {
    display: flex;
    gap: 0.5rem;
    background-color: hsl(200, 66%, 71%);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    border-radius: 0.5rem;
}

.alumno {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-right: 0.5rem;
    justify-content: space-between;
    margin-bottom: 0.5rem
}

.fotosalumnos {
    aspect-ratio: 1;
    margin: 0.5rem;
}

.fotosize {
    width: 10rem;
    max-width: none;
}

section div article figure img {
    border-radius: 1rem;
    border: solid 4px hsl(231, 44%, 31%);
    box-shadow: 4px 4px 0 hsl(231, 44%, 31%);
    display: block;
}

section div article div a {
    color: hsl(0, 0%, 0%);
    background-color: hsl(196, 60%, 56%);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
}

section div article div a:hover {
    color: hsl(0, 0%, 0%);
    background-color: rgb(216, 237, 251);
    border: solid 3px hsl(231, 44%, 31%);
    box-shadow: 3px 3px 0 hsl(231, 44%, 31%);
    transition: 0.5s;
}

.aside {
    padding-top: 0.5rem;
}

.footerfin {
    background-color: hsl(200, 66%, 71%);
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}