@import url("https://fonts.googleapis.com/css2?family=Inter&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1 {
  font-family: "Open Sans";
}
p {
  font-family: "Inter", sans-serif;
}

body {
  background-color: #161525;
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

nav {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.inner {
  margin: 50px;
  display: flex;
  background-color: #313142;
  box-shadow: 22px 18px 4px rgba(0, 0, 0, 0.51);
  min-height: 400px;
}

.left,
.right {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.left {
  margin-left: 50px;
}
.left h1 {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
}

.left h1 span {
  color: rgba(53, 144, 225, 1);
}

.left p {
  font-size: 18px;
  margin-left: 10px;
}

.left > h1,
.left > p {
  margin-left: auto;
  margin-right: 10%;
  width: 400px;
  width: 70%;
}

.right img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .inner {
    flex-direction: column;
    padding: 20px;
  }

  .left,
  .right {
    width: 100%;
  }
  .left {
    margin-left: 0;
    text-align: center;
  }
  .left h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .left h1 br {
    display: inline;
    content: " ";
    padding: 0 3px;
  }
  .left p {
    font-size: 14px;
  }

  .left > h1,
  .left > p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .right {
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
  .right img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
