body {
    width: 100%;
    margin: 0;

    .menu {
        width: inherit;

        img {
            width: inherit;

        }
    }

    .golden-nav-div {
        height: 5.00px;
        background-color: #bc9e48;
    }

    .back-section {
        position: fixed;
        top: 0;
        margin: 20px;
        width: fit-content !important;
        height: 100px;

        font-family: 'Playfair Display', serif !important;
        font-size: x-large;

        z-index: 999;

        .back-section-click {
            display: flex;
            align-items: center;
            width: inherit !important;
            height: inherit !important;
            text-decoration: none !important;

            .back-section-icon {
                border-radius: 50%;
                background-color: #7b8c6e;
                padding: 25px;

                width: inherit !important;
                height: auto !important;

                box-shadow: 0 0 30px 0 white;

                img {
                    width: 50px;
                    height: 50px;
                }
            }

            .back-section-text {
                padding: 25px;

                color: #febc2c;
                text-shadow:
                    1px 1px 2px black,
                    0 0 10px white,
                    0 0 10px white;
            }
        }
    }

    .back-section:hover {
        cursor: pointer;

        .back-section-icon {
            background-color: #4f5a47;
            text-shadow: 1px 1px 2px black,
                0 0 10px white,
                0 0 10px white;
        }

        .back-section-text {
            padding: 25px;
            text-shadow:
                1px 1px 2px white,
                0 0 10px black,
                0 0 10px black;
        }
    }
}