*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    background-color: antiquewhite;
}

.kontena{
    width: 90%;
    margin: auto;
    text-align: center;
}

.banner-menu{
    width: 100%;
    height: 150px;
    margin: auto;
    background-color: #CD5C5C;
    padding: 20px;
    color: white;
}

.banner-menu h2{
    padding: 5px;
    font-size: 20px;
    margin: 0;
    width: 60%;
    float: left;
}

section{
    width: 100%;
}


.boton{
    background-color: #488EE1;
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    padding: 10px;
    font-size: 17px;
    font-family:sans-serif;
    text-decoration: none;
    border: 2px solid #0099CC;
    color: black;
    transition: 0.5s;
}

.boton:hover{
    background-color: white;
}

.boton:hover a{
    color: black;
}


i{
    font-size: 20px;
}

.boton a{
    margin: 4px;
    text-decoration: none;
    color: white;
    
}

.banner-menu button{
    float: right;
    
}


@media (min-width:1230px){
    
    .banner-menu h2{
        font-size: 30px;
    }
}