* {
    margin: 0;
    font-family: helvetica;
}

a:hover{
    transform: scale(1.3) ;
}

a{
    transition: transform 0.3s ;
    font-size:medium;
}

.anima{
padding-bottom: 15px;
width: 100%;
}

strong{
    width: 100%;
    margin-bottom: 20px;
    font-size:x-large;
}
.contenido{
    display: grid;
    grid-template-areas: "header header"
                        "sidebar main"
                        "footer footer";
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto 1fr auto;
    background-color: #f8f4f4;
    height: 100vh;
    grid-gap: 20px;
}

header{
    display: flex;
    flex-direction: column;
    grid-area: header;
    background-color: #343434;
    color: white;
    padding: 20px

}

.sidebar {
    grid-area: sidebar;
    background-color: #e4e4e4    ;
    color: #343434;
    justify-items:start;
    margin-left: 10px;
    padding: 6%;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);

}

.sidebar a{
    text-decoration: none;
    color: #343434;


}

.sidebar p{
    margin-bottom: 5px;
}

hr {
    border: 0.2px solid gray;
    width: 100%;
    margin-bottom: 10px;
}


main{
    grid-area: main;
    background-color: white;
    color: #343434;
    justify-items:start;
    margin-right: 10px;
    padding: 4%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);

}

footer{
    grid-area: footer;
    background-color: #343434;
    color: white;
    justify-items: center;
    text-align: center;
    padding: 2%;
}

html, body {
    height: 100%;
}

.navv a{
    text-decoration: none;
    color: white;

    
}

.navv {
    display: flex;
    gap: 7%;
    font-size:medium;
}

.bold {
    font-weight: bold;
}

.sidebar a {
    display: inline-block;
    transition: transform 0.3s ease-in-out; }

.sidebar a:hover {
    transform: scale(1.1);
}
