        body {
            font-family: 'Inter', sans-serif;
            background-color: #f0f4f8;
            font-size: 18px;
            line-height: 1.6;
        }

        ::selection {
            background: #000;
            color: #FFF;
        }

        header {
            background: #fff;
            box-shadow: 0 0 20px #555;
            position: fixed;
            width: 100%;
            z-index: 20;
            padding: 0.5rem 0;
        }

        header h1 img {
            height: 50px;
        }

        .nav .nav-link {
            text-transform: uppercase;
            font-size: 14px;
            padding-top: 1.5rem;
            color: #000 !important;
            transition: color 0.25s;
        }

        .nav .nav-link:hover {
            color: #A00 !important;
            border-bottom: 2px solid #A00;
        }

        h2 {
            font-size: 36px;
            font-weight: bold;
            margin-top: 2rem;
        }

        h3 {
            font-size: 24px;
            font-weight: bold;
            margin-top: 1.5rem;
        }

        ul {
            list-style-type: square;
            padding-left: 1.5rem;
        }

        input,
        textarea {
            width: 100%;
            border: 2px solid #DDD;
            font: 18px 'Voces';
            padding: 0.5rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            opacity: 0.9;
            transition: all 0.25s;
        }

        input:focus,
        textarea:focus {
            border-color: #9999FF;
            box-shadow: 0px 0px 10px #666;
            opacity: 1.0;
            outline: none;
        }

        section {
            padding: 60px 0;
            min-height: 450px;
        }

        section:nth-child(2n) {
            background: #eee;
        }

        .img-fluid {
            border: 10px solid #fff;
            box-shadow: 0 0 10px #222;
        }

        #top {
            background: url("feature.jpg") no-repeat center center;
            background-size: cover;
            color: white;
            text-shadow: -2px 2px 0px #000;
            padding-top: 270px;
            padding-bottom: 400px;
        }

        #top h2 {
            font-size: 48px;
            font-weight: bold;
        }

        #top p {
            max-width: 600px;
            font-size: 1.25rem;
        }

        .btn-primary {
            background: #222;
            border: none;
            transition: all 0.25s;
        }

        .btn-primary:hover {
            background: linear-gradient(to bottom, #D00, #A00);
            box-shadow: 0px 0px 10px #333;
        }

        footer {
            background-color: #343a40;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }

        .airbnb-responsive-embed {
            width: 100%;
            overflow: hidden;
        }


        @media (max-width: 450px) {
            .airbnb-scaler {
                width: 450px;
                height: 300px;
                transform-origin: top left;
                transform: scale(0.77);
                align-items: center;
                margin-left: 1em;
            }
        }

        .airbnb-responsive-embed .airbnb-embed-frame {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .scroll-down-arrow {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            z-index: 10;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(10px);
            }
        }