@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding-right: 6rem;
  min-height: 100vh;
}

a {
  color: #fff;
  text-decoration: none;
}

main {
  width: 60%;
  display: flex;
  flex-direction: column;
}
aside {
  width: 40%;
  height: 90vh;
}

aside img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.box {
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.box:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.dark-box {
  background-color: #202020;
  margin-bottom: calc(100%/8);
}

.logo {
  background-color: #fff;
  color: #000;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  font-size: 2rem;
  margin-right: 1rem;
}

h1 {
  font-size: 3rem;
  margin: 0;
}

h2 {
  font-size: 2rem;
  font-weight: normal;
  margin: 0;
}

h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #6f6f6f;
}

p {
  margin: 0;
}

.text {
  width: 300px;
}

.fa-chevron-right {
  font-size: 3rem;
}


@media screen and (max-width: 768px){
  body{
    padding-right: 0;
    flex-direction: column;
  }
  aside, main{
    height: auto;
    width: 100%;
  }
  .dark-box {
    margin-bottom: calc(100%/16);
  }
}