﻿html {
    scroll-behavior: smooth;
  /*Para que se desplaze suavemente*/
}

.boton01 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton01:hover {
    background-color: #2980b9;
}

.boton01:active {
    background-color: #1f618d;
}
