body{
    background: #85a3ff
display:flex
}

header,
footer {
    background-color:  #D0B089;
    padding: .4em;
    justify-content: space-between;
    flex-wrap: wrap;
}

        #logo {
            display: block;
            width: 5em;
}

        a{ 
            color: white;
            font-family: sans-serif;
            font-size: 19px;
            list-style: none;
}


    .contenedor {
    list-style: none;
    width:auto;
    height:40px;
    background: #D0B089;
    padding: 2px;
    margin: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center
} 
    .elemento{ 
    list-style: none;
    color:white;
    margin:5px;
    width:auto;
    height: 40px;
    background: #D0B089 ;
    text-align:center;
    flex-direction: row-reverse;
    justify-content: center;
    
}
            nav ul {
                    list-style: none;
                    display: flex;
                    justify-content: space-between; 
}
    
            nav ul li {
                        flex-grow: 1;
}

            nav ul li {
                        margin-left: .25em;
}

            nav ul li a {
                        color: white;
                        text-decoration: none;
                        height: 2em;
                        display: flex;
                        justify-content:center;
                        align-items: center;
                        font-family: 'Hammersmith One', sans-serif;
}
main {
    background: 	#524741;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

    h1, h2 {color: white
    }
    h1 {font-family: sans-serif;
    font-size: 45px;
}
    h2{
   font-family: 'Hammersmith One', sans-serif;
    font-size: 24px;
    
}
.katita{
    margin: auto;
    text-align: center;
    
}

.katita img{
    border-radius: 60%;
    width: 60vw;
    height: 60vw;
    max-width: 15em;
    max-height: 15em;
    margin: 15px;
margin-top: 35px;
    text-align: center;
    justify-content: center;
}
main img{
    width:50%;
    height: 50%;
    text-align: center;
    margin: auto;
}
    
}
footer{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
}
a{
    font-family: 'Hammersmith One', sans-serif;
    color: white;
    text-decoration: none;
    height: 2em;
    display: flex;
}

.redsocial {
     list-style: none;
    width::auto;
    height: auto;
    background: #D0B089;
    padding: 5px;
    margin: 10px;
    display: flex;
    flex-direction: row-reverse;
   
    
}
p {
    font-family: sans-serif;
    color: white;
    font-size: 9px;
    
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
    