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

a {
  text-decoration: none;
}

html {
  /*variáveis*/
  /* --bg-color: #edf2ff;
  --text-color: #00082f;
  --primary-color: #4263eb;
  --primary-color-dark: #364fc7; */
  --bg-color: #edf2ff;
  --text-color: #2d7735;
  --primary-color: #d28a20;
  --primary-color-dark: #e0c054;
}

body {
  /* background: var(--bg-color); */
  background-image: url('./images/pousada-farol.jpeg');
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: hidden;
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

.container {
  text-align: center;
  width: 300px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

img {
  width: 100%;
}

img.avatar {
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 3.7px;
  /* border: var(--primary-color) solid 4px; */
  outline: var(--primary-color) solid 4px;
}

h1 {
  font-size: 32px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.link-instagram {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  opacity: 0.8;
  font-size: 18px;
  color: var(--text-color);
}

.link-instagram:hover {
  opacity: 1;
  transition: opacity 0.2s;
}

ul {
  list-style: none;
  margin: 48px 0;
}

ul li a {
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  font-size: 14px;

  margin-bottom: 16px;
  border-radius: 6px;

  transition: background 0.2s;
}

ul li a:hover {
  background: var(--primary-color-dark);
}

footer {
  font-weight: 500;
  font-size: 13px;
}
