

main{
    display: flex;
    gap: 30px;
}
nav {
    height: 500px;
    width: 200px; 
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
}
section {
    background-color: #00000088;
    border-radius: 10px;
    height: 500px;
    width: 1000px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    gap: 15px;
}
footer {
    background-color: #00000088;
    border-radius: 10px;
    height: 100px;
    width: 1000px;
}
aside {
    border-radius: 10px;
    height: 500px;
    width: 200px; 
}
nav, aside{
    background-image: url("../img/bg1.png");
    background-color: rgb(255, 0, 191);
    animation: scroll2 30s linear infinite;
    background-blend-mode: hard-light;
}

a {
    text-decoration: none;
}
#dibujito{
    width: 250px;
}
#dibujito a{
    display: flex;
    flex-direction: column;
}
#dibujito img{
    width:100%;
    margin: 0px;
    border-radius: 20px 20px 0px 0px;
}
#dibujito h2{
    background-color: black;
    border-radius: 0px 0px 20px 20px;
    padding: 10px 0px 10px 20px;
    font-family: title1;
    font-size: 15px;
    color: white;
    margin:0px;

}
#s2{
    display: flex;
    flex-direction: column;
    gap:10px;
}

.guestbook {
    margin-top: 20px;
    font-family: title1;
    color:black;
    padding-left: 10px;
    transition: all 0.2s ease;
}

#firma{
    position: relative;
    bottom: -8px;
    font-size: 18px;
}
.guestbook #guest{
    position: relative;
    font-size: 25px;
    top: -7px;
}

#guest img{
    position: absolute;
    transform: scaleX(-1);
    transform: rotate(1deg);
    bottom: 35px;
    left: 130px;

}

.guestbook:hover {
    transform: scale(1.04);
}