.back{
    position: sticky;
    top: 3%;
    color: red;
    font-size: 1.2rem;
    padding: 3px;
    font-weight: 600;
    margin-left: 40px;
    margin-bottom: 20px;
    border: 2px solid black;
    background: white;
    border-radius: 5px;
    text-shadow: 1px 1px 0px black;
}

body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.back{
    position: sticky;
    top: 3%;
}
.content{
    padding: 1px;
    margin: auto;
    
}
.paella{
    max-width: 820px;
    display: flex;
    justify-content: top;
    padding: 10px;
    flex-wrap: wrap;
    margin: auto;
}
h1{
    font-size: 4rem;
    color: darkorange;
    text-shadow: 1px 1px 1px black;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 40px;
    text-align: center;
}
.description{
    display: block;
    border: 1px solid black;
    box-shadow: 2px 2px 10px black;
    border-radius: 10px;
    max-width: 380px;
    margin-bottom: 25px;
    margin: 8px;
    text-align: justify;
    font-size: 0.95rem;
    background-color: white;
}
p{ 
    margin: 10px;
    padding: 5px;
    min-height: 250px;
}
p::first-letter{
    font-size: 3rem;
}
li{
    margin-left: 1px;
    margin-right: 20px;
}
@media(max-width: 820px){
    .paella{
        zoom: 1;
    }
    .description{
        max-width: 340px;
    }
}
@media(max-width: 600px){
    .description{
        min-width:360px;
    }
    h1{
        font-size: 3rem;
    }
}
img{
    max-width: 160px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 10px;
    border: 3px solid darkgreen;
    float: left;
}
footer{
    text-align: center;
    padding: 10px;
    background: rgb(53, 36, 65);
    color: aliceblue;
}