/* banner photo code inspiration from w3.schools.com */
.banner-photo {
    background-image: url("quartz.jpg");
    height: 150px;
    width: 1200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-text {
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

body{
    color: rgb(0, 0, 0);

    font-family: Verdana, Geneva, Tahoma, sans-serif;

    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
      
}

p{
    font-size: 16px;
}

h1{
    /* text-transform: uppercase; */
        /*border: 1px solid black; */
    /* border-width: 4px; */
        /* border-style: dotted; */
    /* border-color: rgb(0, 0, 0); */
    /* margin-right: 30px; */
    margin-block-start: 0.9em;
    margin-block-end: 0em;
    font-family: cursive;
}

h3{
    margin-bottom: 5px;
}

.about{
    text-align: center;
}

ul{
    margin-top: 5px;
}

button{
    padding: 20px;
    /* area of element, influences size of button */
    margin: 40px;
    /* margin around everything, space between this element and other elements */
}

form{
    margin: 40px;
}

#clock-face {
    font-size: 1em
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
  }

  .btn-container {
    margin-top: 0px;
  }
  
  .btn {
    font-size: 1em;
    border: 2px outset;
    outline: none;
    cursor: pointer;
  }

  .btn2 {
    font-size: 1em;
    border: 2px outset;
    outline: none;
    cursor: pointer;
  }
  
  .btn:active {
    border: 2px inset;
  }

  .btn2:active {
    border: 2px inset;
  }

strong {
    font-style: italic;
    font-weight: bolder;
    text-transform: uppercase;
}

.container {
    margin: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-width: 4px;
    border-style: dotted;
    border-color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;
}

.spooky {
    /* class css rule, can apply to many elements */
    color: orange;
}

.jumbo {
    font-size: 80px;
}

.wideboi {
    letter-spacing: 20px;
}

#thisisauniqueid {
    font-weight: bold;
}

.spooky.jumbo {
    /* combined selector, class plus class */
    letter-spacing: 16px;
    text-transform: uppercase;
    /* font-family: 'Times New Roman', Times, serif; */
        /* can get fonts from google fonts */
    font-family: 'Gochi Hand', cursive;
        /* make sure to put link under head in html */
}

button.spooky {
    /* tag plus class */
    padding: 40px;
    margin: 10px;
    border-radius: 50%;
        /* makes border round */
}

button2.spooky {
    /* tag plus class */
    padding: 40px;
    margin: 10px;
    border-radius: 50%;
        /* makes border round */
}
