* {
  margin: 0;
  padding: 0;
}
body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: medium;
  color: white;
  position: relative;
}

.logo {
  position: absolute;
  bottom: 12px;
  right: 20px;
  max-width: 150px;
  width: auto;
}

.container {
  background: url("./Images/background.jpg") no-repeat center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  background-color: #3b192fd2;
  padding: 20px 40px;
  border-radius: 19px;
}

.content h2 {
  margin-bottom: 20px;
}

button {
  background-color: #a00546d0;
  border: none;
  padding: 10px 20px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}

button:hover {
  background-color: #ca0256de;
}

footer {
  text-align: center;
  padding: 10px;
  color: #ffffff;
  background-color: rgba(50, 1, 100, 0.295);
}

p {
  margin-bottom: 10px;
}
