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

body,
html {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body {
  background-image: url("assets/bg-Image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 20px solid #003F51;
}

.container {
  position: relative;
  width: 100vw;

  height: 100vh;
}
.logo {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #003F51;
  padding: 10px 20px;
}

.logo img {
  max-width: 180px;
  height: auto;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

.button {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: white;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  text-align: center;

  font-family: "Lusitana", serif;
}

.button:hover {
  background-color: #ddd;
}
