* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
:root {
  --color1: #2F4858;
  --color2: #3A6574;
  --color3: #48848D;
--background: #5CA3A2;
  --color4: #79C3B2;
  --color5: #9FE2BF;
  
}
body {
  background-color: var(--background);
  height: 100vh;
  color: var(--color6);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

/* ///// CONTAINER GLOBAL ///// */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* /// HEADER /// */
.container .header nav {
  color: var(--color1);
  display: flex;
  justify-content: flex-end;
}
.header li {
  cursor: pointer;
}
.header li:hover {
  color: var(--color5);
}
.container .header .nav-right {
  width: 250px;
  height: 60px;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.container .header .nav-right .app-menu-icon {
  width: 30px;
}
.container .header .nav-right .profile-icon {
  border-radius: 50%;
  border: 3px solid var(--background);
  transition: 0.5s ease-out;
}
.container .header .nav-right .profile-icon:hover {
  transition: 0.5s ease-out;
  border: 3px solid var(--color5);
}

/* /// MAIN /// */
.container .main {
  margin: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}


/* //// Search box */
.container .main .main-input {
  width: 500px;
  height: 40px;
  background-color: var(--background);
  border: 1px solid var(--color5);
  border-radius: 100px;
  margin: 30px 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  transition: 0.5s ease-out;
}
.container .main .main-input:hover {
  background-color: var(--color2);
  transition: 0.5s ease-out;
  box-shadow: 0px 0px 35px var(--color5);
}
.container .main .main-input input {
  width: 100%;
  margin: 0 15px;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--color5);
  font-size: 1.4rem;
  font-weight: 300;
}
.container .main .main-input img {
  width: 15px;
}
.container .main .main-input .voice-button {
  cursor: pointer;
}
.container .main .main-input .voice-button:hover {
  transition: 0.15s ease-in-out;
  transform: scale(1.2);
}
/* //// Buttons */
.container .main .buttons-bellow {
  width:300px;
  display: flex;
  justify-content: space-evenly;
}
.container .main .buttons-bellow button {
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  background-color:#9fe2bf71;
  color: white;
  cursor: pointer;
}
.container .main .buttons-bellow button:hover {
  background-color: var(--color2);
  transition: 0.15s ease-in-out;
}


/* /// FOOTER /// */
.container .footer {
  width: 100%;
  height: 60px;
  background-color: var(--color3);
  color: var(--color5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer li {
  cursor: pointer;
}
.footer li:hover {
  color: var(--color1);
}

/* //// Left menu */
.container .footer .left-footer {
  width: 400px;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* //// Right menu */
.container .footer .right-footer {
  width: 300px;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}


/* ///// MEDIA QUERIES ///// */
@media (max-width: 690px) {
  .container .footer {
  height: 100px;
  width: 100%;
  justify-content: center;
  padding: 20px 0;
  }
  .container .main .main-input {
    width: 80vw;
  }
}