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

body {
  height: 100vh;
background: url("fundo.png") center/cover no-repeat;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  background: rgba(0,0,0,0.8);
}

.navbar a {
  cursor: pointer;
}

.navbar a:hover {
  color: gold;
}

/* HOME */
.home {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home h1 {
  font-size: 60px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);

  justify-content: center;
  align-items: center;
}

.modal-box {
  background: rgba(0,0,0,0.95);
  padding: 30px;
  border-radius: 15px;
  width: 320px;
  text-align: center;
  position: relative;
}

.modal-box h2 {
  margin-bottom: 15px;
}

.modal-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  border: none;
}

.modal-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 25px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}

.modal-box button:hover {
  background: gold;
  color: black;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}