*{
    margin: 0;
    padding: 0;
    border: none;
}

body{
background-color: lightgrey;
}

#header{
    width: 100%;
    height: 75px;
    background-color: green;
    color: white;
    text-align: center;
    font-size: 50px;
    padding-top: 10px;
}

.intro {
    text-align: center;   
    font-size: 175%; 
    border-bottom: solid 4px black;   
    border-top: solid 4px black; 
}

.Title {
    text-align: center;
    color: green;
    font-size: 300%;  
    padding-top: 20px;   
}

#container {
    text-align: center;
}

/* button design*/
#button1, #button2, #button3, #button4 {
    cursor: pointer;
    border: 0;
    line-height: 3;
    margin: 40px;
    padding: 0 20px;
    font-size: 2rem;    
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: green;
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

#button1:hover, #button2:hover, #button3:hover, #button4:hover {
    color: black;
    transition-duration: 0.5s;
}


#button1:focus, #button2:focus, #button3:focus, #button4:focus {
    background: blue;
}

/* button contents*/
h3 {
    color: green;
   font-size: 300%;
   text-align: center;
}

table, th, td {
    border-style:solid;
    color: green;
    font-size: 125%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

#texthere, #videotext {
    text-align: center;
    
}

#imagehere, #videohere {
    text-align: center;
}

/*shop button*/

#ShoppingList {
    text-align: center;
}
label{   
    color: green;
    font-size: 175%;
    text-align: center;
}

section a{    
    text-decoration: none;      
    cursor: pointer;
    border: 0;
    line-height: 3;
    margin: 40px;
    padding: 0 20px;
    font-size: 3rem;    
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: green;
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

a:hover {
    color: black;
    transition-duration: 0.5s;
}

a:focus {
    background: blue;
}

section{
    text-align: center;
}
/* responsive */
@media screen and (max-width: 450px) {

    #header{ 
        font-size: 35px;
    }
  }