{
    box-sizing: border-box;
}
body{
    background-color: rgb(189, 234, 234);
    font-family:Roboto;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    
}
a {
  color: #ffffff;
}

/* header */

.header {
  background-color: #78cfd6;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #5eb6be;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
    
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #338b9b;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* main */

main {padding-top: 5em;
        
}

.logomoronsurco {
    display:block;
    margin: 0em 1em;
    padding: .5em;
}

h1 {
    display: flex; 
    margin: 1em;
    color: #4b97b9;
    display: flex; 
    justify-content: center;
}

p {
    display: flex; 
    margin: 0em 1em 1em 1em;
    padding: .5em;
    color: #03030d;
    display: flex; 
    justify-content: center;
    background-color: aliceblue;
}

h4 {
    display: flex; 
    margin: 1em 1em 0em 1em;
    padding: .5em;
    color: #03030d;
    display: flex; 
    justify-content: center;
    background-color: aliceblue;
}

.negrita{
       font-weight:bold;
}


.circulo {
        border-radius:150px;
        margin-bottom: 2em;
}

a { text-decoration: none;
    color:#ffffff;
}



.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 46px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 5px;
  position: relative;
  transition: background .2s ease-out;
  width: 40px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 14px;
}

.header .menu-icon .navicon:after {
  top: -14px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 350px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


/* interf */



footer{
    display: flex; 
    justify-content: center;
    width: 90%;
    min-height: 3em;
    margin: .5em;
    padding: 1em;
    color: #0083aa;
    text-align:center;
    
}

.mini{
font-size:12px;
    background-color: rgb(189, 234, 234);
}

@media (min-width: 900px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
    
    main {padding-top: 9em;
        
}

