:root{
  --color-primary-light: #fdf45e;
  --color-primary:#fcef19;
  --color-primary-dark:#ffe600;

  /*#fcef19*/
}

html,
body {
  height: 100%;
  width: 100%;
  padding: 0px;
  font-family: "Amatic SC";
}
.h2{
  font-weight: bold;
}

.title{
  padding: 30px 0 10px 0;
  font-size:400%;
  text-align: center;
}

.btnPrimary {
  font-weight: bold;
  background: var(--color-primary);
  box-shadow: 0px 2px 10px rgba(36, 35, 35, 0.6);
  transition: all 0.2s ease-in-out;
}

.btnPrimary:hover {
  transform: scale(1.05);
}

.image-shadow {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#floating-button {
  cursor: pointer;
  display: none;
  position: fixed;
  width: 56px;
  height: 56px;
  right: 30px;
  bottom: 15px;
  text-align: center;
  border-radius: 50%;
}
.floating-button-icon {
  font-size: 150%;
  display: table-cell;
  vertical-align: middle;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.1);
}
.nav-link {
  padding-left: 100px;
  color: black;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.nav-link:hover {
  transform: scale(1.1);
  color: black;
}

#current-link{
  color:#616161;
}


/* footer */

h5{
  font-weight: bold;
  margin-top:10px;
}

#icon-section {
  font-size: 130%;
}

.icon{
  color:black;
  cursor: pointer;
  margin: 15px;
  display: inline-table;
  background: var(--color-primary-light);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 10px rgba(36, 35, 35, 0.6);
}
.icon:hover {
  color:black;
  transform: scale(1.1);
  text-decoration: none;
}

.fa-instagram,
.fa-envelope,
.fa-etsy {
  display: table-cell;
  vertical-align: middle;
}

#email{
  font-weight: bold;
  font-size:120%;
}

#newsletter-section{
  padding: 30px 0 30px 0;
}

#newsletter-section h3 {
  font-weight: bold;
}

#newsletter-form {
  font-weight: bold;
  font-size: 150%;
}
#newsletter-form input[type="text"] {
  width:80%;
  text-align: center;
  border: 1px solid white;
  background: #fdf55e9c;
  font-weight: bold;
}

.newsletter-input{
  width:80%;
  text-align: center;
  border: 1px solid white;
  background: #fdf55e9c;
  font-weight: bold;
}

.btn-subscribe {
  background: var(--color-primary-light);
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  display: block;
  margin: auto;
  margin-top:15px;
  font-size:90%;
  padding: 0 10 0 10;
  box-shadow: 0px 2px 10px rgba(36, 35, 35, 0.6);
  font-size:110%;
}
.btn-subscribe:hover {
  background: var(--color-primary-light);
  transform: scale(1.05);
}

#footer-logo{
  width:90px;
}


/* Animations */
@keyframes pulse
{
  0% {
    transform: scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100% {
    transform:scale(1);
  }
}
