*{
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  background-image: url('https://i.imgur.com/yTbY8xy.jpg');
  background-size: contain;
}

.logo {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.logo img {
  width: 300px;
 max-width: 80%;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.90);
}

a:link {
  color: #fff;
  font-size: 1.4rem;
}


li {
  margin-top: 30px;
  text-align: center;
  list-style-type: none;
}

a {
  display: block;
  width: 100%;
  padding: 15px 50px;
  background-color: #EA638C;
  border-radius: 10px;
  box-shadow: 5px 5px #a68f90;
}


.bg {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.links {
  width: 100%;
  padding: 0;
}


@media(max-width: 600px) {
  .bg {
    width: 90%;
  }
}