* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --text-color: white;
  --bg: url(assets/bg.jpg);
  --bg-mobile: url(assets/bg-mobile.jpg);
  --border-color: white;
  --surface: rgba(0, 0, 0, 0.5);
}

/*base do site*/
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--bg);
  background-size: cover;
  height: 100vh;
}

body * {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  text-shadow: 0 0 3px black;
}

#container {
  width: 100%;
  max-width: 588px;
  margin: 0px 24px;
}

/*Links*/
ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 24px 0px;
}

/*Botões*/
ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  padding: 16px 24px;

  border: 1px solid var(--border-color);
  border-radius: 20px;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/*pseudo-selector*/
ul li a:hover {
  background: var(--surface);
  border: 1.5px solid black;
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

ul li a h2 {
  font-size: 20px;
}

i {
  position: absolute;
  left: 28px;
  top: 13px;
  font-size: 30px;
  color: rgb(0, 132, 255);
}

@media (max-width: 768px) {
  body {
    background-image: var(--bg-mobile);
  }
}
