html,
body {
  margin: 0;
  padding: 0;
}
h1, h2 {
  font-family: 'Lato', sans-serif;
}

p, a {
  font-family: 'Open Sans', sans-serif;
}
.container {
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: column;
}

:root {
  --lightPink: #FF5678;
  --offWhite: #F6F2EF;
}

nav {
  display: flex;
  justify-content: flex-end;
}

ul {
  display: flex;
  list-style-type: none;
  gap: 80px;
  align-items: center;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 40px;
}

form {
  display: flex;
  align-items: center;
}

footer {
  margin-top: 100px;
  width: 100%;
  height: 130px;
  background-color: #1D1C1C;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.headerLink {
  text-decoration: none;
  color: #1D1C1C;
}

.headerLink:hover {
    -webkit-text-stroke: 1px;
    color: var(--lightPink);
}

#loginBtn {
  padding: 8px 24px;
  background-color: #1D1C1C;
  border-radius: 40px;
  color: #FFFFFF;
  border: none;
  transition: all .1s ease-in;
  right: 0;
  bottom: 0;
  position: relative;
}

#loginBtn:hover {
  background-color: var(--lightPink);
  cursor: pointer;
  right: 2px;
  bottom: 2px;
  box-shadow: rgba(0,0,0,0.8) 5px 5px 5px;
}

#loginBtn:active {
  left: 2px;
  top: 2px;
}

.hero {
  margin-top: 100px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.search {
  background-color: var(--offWhite);
  padding: 20px;
  min-width: 300px;
  border-radius: 16px;
  border: 1px var(--offWhite) solid;
}

.search:hover {
  border: 1px var(--lightPink) solid;
}

#submitBtn {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  border: none;
  background-color: var(--lightPink);
  margin-left: 12px;
  transition: all .1s ease-in;
  right: 0;
  bottom: 0;
  position: relative;
}

#submitBtn:hover {
  right: 2px;
  bottom: 2px;
  box-shadow: rgba(0,0,0,0.8) 5px 5px 5px;
}

#submitBtn:active {
  left: 2px;
  top: 2px;
}

#arrowImg {
  position: relative;
  top: 2px;
}

#laRambla {
  color: var(--lightPink);
}

.specialOffer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.offerContainer {
  background-color: var(--offWhite);
  border-radius: 16px;
  padding: 20px 60px;
  position: relative;
  margin: auto;
  transition: all .1s ease-in;
  right: 0;
  bottom: 0;
}

/* .offerContainer:hover, .selectionContainer:hover {
  box-shadow: 30px 30px 20px rgba(33,33,33,.2); 
  position: relative;
  right: 10px;
  bottom: 10px;
} */

.offerContainer:hover, .selectionContainer:hover {
  right: 10px;
  bottom: 10px;
  box-shadow: 30px 30px 20px rgba(33,33,33,.2);
}

.offerBanner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buyBtn {
  background-color: var(--lightPink);
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px 60px;
  transition: all .15s ease-in;
}

.buyBtn:hover {
  background-color: #1D1C1C;
  color: #FFFFFF;
  box-shadow: rgba(0,0,0,0.8) 0px 0 10px;
}

.footerIcon {
  display: flex;
  gap: 15px;
}

.icon {
  filter: invert(100%);
}

.selectionBanner {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
}

.selectionBanner > div {
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropDown {
  background-color: var(--offWhite);
  border-radius: 16px;
  border-right: 3px solid var(--offWhite);
  padding: 5px 15px;
}

.dropdownMenu {
  background-color: var(--offWhite);
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  outline: none;
}


.beanDetail {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.origin {
  text-align: left;
  width: 100%;
  font-size: 0.8rem;
  position: relative;
  bottom: 10px;
}

.beanText {
  font-weight: 100;
  -webkit-text-stroke: 1px;
  font-size: 0.8rem;
}

.available {
  padding: 7px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 1px;
  border-radius: 10px;
  letter-spacing: 0.1em;
  background-color: #149770;
  color: #FFFFFF;
  position: absolute;
  left: 230px;
}

.selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  margin-bottom: 50px;
  justify-content: center;
}

.selectionContainer {
  background-color: var(--offWhite);
  border-radius: 16px;
  padding: 20px 25px;
  position: relative;
  min-width: 250px;
  transition: all .1s ease-in;
  right: 0;
  bottom: 0;
}

.dropDown:hover {
  background-color: var(--lightPink);
}

.dropDown:hover > select {
  background-color: var(--lightPink);
  color: #FFFFFF;
}


@media only screen and (max-width: 600px){
	/*Big smartphones [426px -> 600px]*/
  .specialOffer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  
}
