
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.hero-section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    object-position:center;
}

.floating-menu {
    padding: 10px;
    text-spacing: 10px;
    min-width: 140px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    align-content:center;
}

    .floating-menu button {
        border: none;
        padding: 12px 18px;
        border-radius: 30px;
        background: white;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,.2);
    }

        .floating-menu button.active {
            background: #ffc107;
        }

.contact-box {
   
    text-align: center;
}

.hero-subtitle {
    font-size: 2rem;
    color: burlywood;
}

.footer {
    background:rgb(0, 0, 0)
    color: #b48b6d;
    padding: 1rem;
    text-align: center;
    align-content:center;
    width:97%
}   

    .footer a {
        color: burlywood;
    }
    

@media (max-width: 768px) {

    .floating-menu {
        left: 10px;
    }

        .floating-menu button {
            min-width: 110px;
            font-size: .8rem;
        }
}

