* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(257, 40%, 49%);
  background-image: url(bg-desktop.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
main {
  height: 80%;
  width: 90%;
  display: flex;
}
section {
  width: 55%;
  height: 100%;
}
.logo-div {
  height: 15%;
  width: 100%;
}
.logo {
  height: 3em;
  position: relative;
  top: 1.7em;
  left: 1em;
}
.image-div {
  height: 85%;
  width: 100%;
}
.image-div img {
  height: 100%;
  width: 95%;
  position: relative;
  top: 1.9em;
  left: 1em;
}
aside {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.text-info {
  height: 50%;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  margin-bottom: -50px;
}
.text-info h1 {
  font-size: 30px;
  margin: 0 150px 0 0px;
  font-family: Poppins;
}
.text-info p {
  font-size: 1em;
  text-align: justify;
  margin: 0 100px 0 0px;
  line-height: 1.3em;
  font-family: Open Sans;
}
.register {
  height: 2.6em;
  width: 12em;
  font-family: Open Sans;
  border-radius: 20px;
  border: white;
  color: hsl(257, 40%, 49%);
}
.register:hover {
  background-color: hsl(300, 69%, 71%);
  box-shadow: 1px 1px 4px black;
  cursor: pointer;
  color: white;
}
.media-div {
  height: 20%;
  width: 250px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 30px 80px -200px 0px;
}
.fb-circle,
.x-circle,
.insta-circle {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-circle:hover,
.x-circle:hover,
.insta-circle:hover {
  border: 1.5px solid hsl(300, 69%, 71%);
  cursor: pointer;
  i {
    color: hsl(300, 69%, 71%);
  }
}
