* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

.background {
  background-image: url('images/web.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.bottom-content {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.bottom-content img {
  max-width: 100px; /* Adjust size as needed */
  margin-bottom: 10px;
}
.copyright {
  color: white;
  padding: 8px 0;
  font-size: 16px;
  border-radius: 5px;
}