* {
    margin: 0;
    padding: 5px;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace
    color: black;
    list-style-type: none;
}

h1 {
 font-family: cursive;
 font-size: 3em;
 color: black;
}

h2 {
    font-family: 'Courier New', Courier, monospace, 
    color: black;
}

h3 {
    font-family: 'Courier New', Courier, monospace
    font-size: 2.5em;
    background-color: rgba(75, 75, 75, 0.692);
    color: white;
    text-align: center;
}

h4 {
    font-family: 'Courier New', Courier, monospace
    font-size: 2em;
    background-color: rgba(75, 75, 75, 0.692);
    color: white;
    text-align: center;
}

p {
    font-family: 'Courier New', Courier, monospace
    color: black;
    font-size: 1.1em;
}

/* Container holding the image and the text */
.container {
    position: static;
    margin-top: 70vw;
    text-align: center;
    color: white;
  }
  
  /* Bottom left text */
  .bottom-left {
    position: static;
    bottom: 8px;
    left: 16px;
  }
  
  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  
  /* Top right text */
  .top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  /* Bottom right text */
  .bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

figure#mobile {
    width: 375px;
    height: 627px;
}

figure#tablet {
    width: 768px;
    height: 1024px;
}

figure#laptop {
    width: 1366px;
    height: 768px;
}

figure#desktop {
    width: 1920px;
    height: 1080px;
}

section {
    width: 100vw;
    height: 100vh;
}

/* hamburger menu button*/ 
button#hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3em;
    padding: 10px 20px 10px 20px;
    border: none;
    background-color: white; 
}

button:hover {
    color: rgb(221, 176, 92);
    background-color: white;
}

nav {
    position: fixed;
    font-size: 3em;
    top: 120px;
    right: -170px;
    transition: right .6s;
    background-color: rgba(255,255,255,0.6);
    padding: 5px;
}

.home {
    position: absolute;
    left: 15%;
    right: 15%;
    padding-bottom: 5vw;
}

.firstimage {
    position: absolute;
    top: 460px;
    left: 50px;
    right: 50px;
}

#imagetext {
    position: static;
    top: 630px;
    left: 260px;

}
.about {
    position: absolute;
    left: 20%;
    right: 20%;
    padding-bottom: 40px;
}

.menu {
    position: static;
    columns: 2;
    padding: 80px;
    background-color: tomato;
}

.winelist {
    position: static;
    padding: 80px;
    background-color: rgb(255, 157, 140);
    padding-bottom: 80px;
}

 .shopbanner {
     position: relative;
     left: 15%;
     right: 15%;
 }

.shop {
    position: absolute;
    columns: 3;
    width: 70%;
    left: 15%;
    margin-bottom: 5vW;
    background-color: rgb(233, 154, 89);
    border: black;
    padding: 10px;
    padding-bottom: 60px;
}

.input {
    display: block;
    margin: auto;
    color: black;
    font-weight: bold;
    border: 3px solid black;
    background-color: white;
}

input:hover {
    color: thistle;
    border-color: 3px solid gray;
    background-color: black;
}

input:focus {
    background-color: darksalmon;
}

#slideshow { 
    margin: 50px auto; 
    position: relative; 
    width: 240px; 
    height: 240px; 
    padding: 10px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.4); 
  }
  
  #slideshow > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
  }
  
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 2rem;
}

.slide-the-drawer {
    right: 20px;
}

a:hover {
    background-color: none;
    color: rgb(221, 176, 92);
}

