/* ------------- CSS for Horoscope Page ------------ */

/* styling for background image */
body {
    background-color: #d3d3d3;
}

/* styling for text at top of page */
.flexbox h1 {
    margin-top: 25px;
    text-align: center;
    font-size: 3.0em;
    font-family: 'Courgette', cursive;
    color: black;
}



/* button styling for menu */
.dropbtn {
    cursor: pointer;
    margin-top: 30px;
    font-family: 'Courgette', cursive;
    font-size: 1.2em;
    width: 200px;
    height: 75px;
    padding: 15px;
    margin-left: 125px;
    background-color: black;
    color:  #d5b33c;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* styling for dropdown part of menu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* styling for the content in the dropdown section of menu */
.dropdown-content {
    display: none;
    position: absolute;
    font-family: 'Courgette', cursive;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: black;
    color: #d5b33c;
    padding: 15px;
    margin-left: 126px;
    min-width: 164px;
    z-index: 1;
}

/* styling for the selections in the menu */
.dropdown-content a {
    cursor: pointer;
    color: #d5b33c;
    background-color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* hover styling starts */
.dropdown-content a:hover {
    background-color: #d5b33c;
    color: black;

}

.dropdown:hover .dropdown-content{
    display: block;
}
/* hover styling ends */

.horoscope {
    border: 5px solid #d5b33c;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 250px;
    width: 60%;
    margin-top: 150px;
    margin-left: 315px;
    margin-bottom: 150px;
    font-size: 1.8em;
    font-family: 'Pompiere', cursive;
    color: black;
}

.lotus img {
    height: 150px;
    width: 20%;
    margin: 0;
    position: absolute;
    top: 25%;
    left: 43%;
    -ms-transform: translate(-15%, -30%);
    transform: translate(-15%, -30%);
    
}


.button-one, .button-two {
    cursor: pointer;
    margin-top: 10px;
    background-color:#d3d3d3;
    color: #3a3a3a;
    border-color:#3a3a3a;
    border-radius: 45%;
    font-size: 1.0em;
    box-shadow: 4px 8px black;
}


.button-one:hover {
    background-color: #d5b33c
}

.button-two:hover {
    background-color: #d5b33c;
}

.horoscope-text {
    margin-top: 10px;
    text-align: center;
}

.horoscope-text p {
    font-family: 'Courgette', cursive;
    color: #d5b33c;
    font-size: 3.0em;
    font-weight: lighter;
}


/* media query styling starts */

 

    @media screen and (max-width: 1280px) {
        .flexbox {
            font-size: 0.8em;
            margin-left: 10px;
            margin-top: 5px;
        }

        .flexbox h1 {
            font-size: 3.5em;
        }

        .horoscope {
            height: auto;
            width: 800px;
            margin-top: 275px;
            margin-left: 225px;
            margin-right: 50px;
            margin-bottom: 150px;
            font-size: 2.4em;
        }
        
        .dropbtn {
            margin-top: 25px;
            margin-left: 20px;
            font-size: 9px;
            width: 225px;
            height: 90px;
            font-size: 2.0em;
        }
    
        .dropdown-content {
            width: 200x;
            padding: 5px;
            margin-left: 20px;
        }

        .dropdown-content a {
            font-size: 2.4em;
        }
    
        .horoscope-text p {
            padding: 25px;
        }

        .button-one, .button-two {
            margin: 0;
        }

        .lotus img {
            top: 35%;
        }
    } 
    
        @media screen and (max-width: 912px) {
            .flexbox h1 {
                font-size: 3.8em;
            }

            .lotus img {
                top: 20%;
                left: 60%;
                height: 200px;
                width: 45%;
            }

            .dropbtn {
                width: 300px;
                height: 125px;
                font-size: 2.2em;
            }

            .dropdown-content {
                min-width: 280px;
            }

            .horoscope {
                margin: 145px 255px 150px 45px;
            }
        }

        @media screen and (max-width: 768px) {
            header {
                position: relative;
            }
            
            .flexbox h1 {
                font-size: 4.0em;
            }

            .dropbtn {
                width: 200px;
                height: 100px;
                font-size: 1.8em;
            }

            .lotus img {
                top: 25%;
                left: 60%;
                height: 150px;
                width: 200px;
            }

            .horoscope {
                position: relative;
                height: 225px;
                width: 75%;
                margin: 145px 250px 150px 75px;
                font-size: 1.4em;
            
            }
        }

        @media screen and (max-width: 540px) {
            .flexbox h1 {
                font-size: 2.0em;
            }
            
            .lotus img {
                top: 22%;
                left: 55%;
                height: 80px;
                width: 50%;
            }

            .dropbtn {
                margin-left: 0px;
                width: 125px;
                height: 62px;
                font-size: 1.2em;
                text-align: center;
            }

            .dropdown-content {
                min-width: 120px;
                margin-left: 0px;
            }

            .dropdown-content a {
                font-size: 1.2em;
            }

            .horoscope {
                font-size: 1.2em;
                height: 200px;
                width: 75%;
                margin: 75px 200px 75px 43px;
            }
        }

        @media screen and (max-width: 280px) {
            .flexbox h1 {
                font-size: 1.3em;
            }

            .lotus img {
                top: 25%;
                left: 60%;
                height: 70px;
                width: 45%;
            }

            .dropbtn {
                width: 124px;
                height: 60px;
                font-size: 1.0em;
                margin-left: 0px;
            }

            .dropdown-content {
                min-width: 115px;
                margin-left: 0px;
            }

            .horoscope {
                font-size: 1.0em;
                margin: 100px 225px 100px 30px;
            }
        }


    
        

        /* end stylesheet */
