@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");

:root {
  --background_color: rgba(50, 50, 50, 1);
}

* {
  font-family: poppins;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  background: var(--background_color);
  color: white;
}

header {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  background: var(--background_color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 80px;
}

.header-menu {
  display: flex;
  gap: 1rem;
}

.menu-button {
  text-decoration: none;
  color: white;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  height: 30px;
  transition: all 0.3s ease;
}

.menu-button:hover {
  color: blue;
  cursor: pointer;
}

.menu-button:last-child {
  background: blue;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 30px;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  padding: 0.5rem 1rem;
  height: 30px;
  transition: all 0.3s ease;
}

.menu-button:last-child:hover {
  background: white;
  color: black;
  cursor: pointer;
}

main {
  width: 70vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 1rem;
}

main h1 {
  font-size: 40pt;
  text-align: center;
}

main .logo {
  height: 400px;
}

.carrousel {
  display: flex;
  width: 80vw;
  height: auto;
  aspect-ratio: 8/4;
}

.download {
  padding: 1rem 2rem;
  background: blue;
  color: white;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 30px;
  font-size: 20pt;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.download:hover {
  background: white;
  color: black;
  cursor: pointer;
}

.floating-action-buttons {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 1rem;
  bottom: 4rem;
  gap: 1rem;
}

.float-button {
  background: blue;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  font-size: 80pt;
  border-radius: 30px;
  transition: 0.3s ease;
}

.float-button:hover {
  background: white;
  color: black;
  cursor: pointer;
}

footer {
  background: black;
  padding: 1rem;
  text-align: center;
}
