@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --primary-color: #03254c;
  --secondary-color: #5d2844;
  --third-color: #187bcd;
  --fourth-color: #2a9df4;
  --white: #fff;
  --black: #5d2844;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--black);
}

.download_btn {
  text-decoration: none;
  color: var(--secondary-color);
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

main {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 540px;

  padding: 16px;
}

.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.card__title {
  font-weight: 400;
  color: var(--white);
}

.card__text {
  font-weight: 300;
  color: var(--white);
}

.card__img {
  width: 120px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.card__icons {
  display: flex;
  gap: 12px;
}

.card__icon > img {
  width: 35px;
  height: 35px;
}

/* menu */

.floating__menu {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating__menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating__menu__link > input,
.floating__menu > input {
  all: unset;
  background-color: var(--primary-color);
  color: white;
  padding: 12px;
  width: 18px;
  height: 18px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.floating__menu__link > input:hover,
.floating__menu > input:hover {
  filter: brightness(150%);
}

.floating__menu > input {
  background-color: var(--secondary-color);
  color: white;
}

.display-none {
  display: none;
}
