        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
        }

        .background {
            position: relative;
            width: 100%;
            height: 80vh;
            background-image: url('../img/banner.png'); /* Cambia la URL por la imagen que desees usar */
            background-size: cover;
            background-position: center;
        }

         .overlay-elements {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 300px;
            height: 300px;
            position: relative;
        }

        .overlay-elements img {
            width: 280px;
            height: 280px;
        }

        .menu-btn, .contact-btn {
            padding: 10px 20px;
            background-color: #efb56c;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn i, .contact-btn i {
            margin-right: 8px;
        }


        .contact-btn img {
            width: 20px; /* Ajusta el tamaño de la imagen */
            height: 20px;
            margin-right: 8px; /* Espacio entre la imagen y el texto */
        }

        /* Triangular alignment */
        .overlay-elements .logo {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .overlay-elements .menu {
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .overlay-elements .contact {
            position: absolute;
            bottom: 0;
            right: 0;
        }