     /*
       RedRocks Community College
 Student: Alex H Lee
 4/3/2020
Capstone Course CIS 289402
Instructor: Candace Garrod
Page: Style Sheet CSS
Purpose: This page Stores the custom classes ,images and the CSS for the home page for the GeJos website.
*/

/* Style for the font*/
@font-face {
            src: url(Fonts/LeGriffeStdRegular.otf);
            font-family: Le_Griffe;
        }

@font-face {
            src: url(Fonts/TiffanyStd.otf);
            font-family: Tiffany;
        }

 /*Style for the images*/
img {
    max-width: 100%;
    height: auto;
}

/* Style for the links*/
a {
    padding: 5px;
    align-items: center;
    text-align: center;
    color: black;
    display: flex;
    justify-content: center;
 
}

.clearfix {
  overflow: auto;
}

.parallax {
 


  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect for mobile phone */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Classes used to line up the text in the center of the page*/
    .menuwidth {
        width: 500px;
    }

    .divwrap {
        display: flex;
        justify-content: center;
    }
    .centeritems {
    display: flex;
    justify-content: center;

}

/* Style for The navigation bar and drop down menu*/
.nav {
    background-color: black;
    border-image: linear-gradient(to bottom right, #ffffff 0%, #11701e 25%, #ff0000 50%, #ffffff 75%, #11701e 100%);
    border-image-slice: 1;
   
}

    .nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: black;
        display: flex;
    }


    .nav li {
        float: left;
    }

        .nav li a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

            .nav li a:hover {
                background-color: #808080;
            }


.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 1em;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .nav a:hover, .dropdown:hover .dropbtn {
        background-color: red;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: grid;
}
/*Style For the navigation bar ends*/



/*Style for the main section of the home page*/

/*Headers*/
h1 {
    text-align: center;
    color: darkgrey;
    font-family: Le_Griffe;
    font-size: 150%;
    border-radius: 15px;
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: center;
    width: 50%;
    background-image: url("Images/Flag-Italy.png");
    margin-left: auto; 
    margin-right: auto;
}

h2 {
    font-family: Le_Griffe;
    font-size: 1.5em;
    text-align: center;
}

/*Paragraph Style*/
p {
    color: black;
    font-family: Tiffany;
    font-size: larger;
    border-radius: 30px;
    text-align: center;
    font-size: 20px;
    border-radius: 15px;
    background-color: white;
}
form {
    color: #ffd700;
    font-family: Le_Griffe;
    font-size: larger;
    font-size: 16px;
}

input {
    margin-top: 10px;
    display: block;
}

#mysubmit {
    margin-left: 11px
}

/*style for the containers and content*/
.container {
    width: 85%;
    height: 100%;
    position: absolute;
    right: 0;
    align-content: center;
}

.content {
    padding-right: 10px;
    padding-left: 10px;
    border: solid #ffd700;
    border-width: 15px;
    background-image: url("Images/Flag-Italy.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center; 
    background-color: white;
    margin-bottom: 10px;
   border-image: linear-gradient(to bottom right, #ffffff 0%, #11701e 25%, #ff0000 50%, #ffffff 75%, #11701e 100%);
border-image-slice: 1;
}

/*Style containg the background image for the site*/
body {
    font-family: Le_Griffe;
    font-size: 20px;
    background-color: black;
    background-image: url("Images/Shelly.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*Style to help section out the website into colums*/
.col {
    border: double #ffd700;
    background-color: grey;
    max-width: 992px;
    margin: 10px auto;
}

.leftcolumn {
    display: flex;
    background-color: #000000;
    max-width: 992px;
    margin: 10px auto;
}

.rightcolumn {
    display: flex;
}

.clearfix {
    width: 100%;
    clear: both;
}
.center {
    margin: 0 auto;
    width: 400px;
}


.menu {
    color: black;
width: 50%;
margin:100px auto;
    table-layout:fixed;
    border-collapse: collapse;


}
.price {
    float:right;
}
.home {
    text-align: center;
    max-width: 992px;
    margin: 10px auto;
    font-family: Le_Griffe;
    font-size: 1em;
}

.myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

.myBtn:hover {
  background-color: #555;
}

