@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  height: 100vh;
  padding: 0 10%;
  background: #f7efef;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 30px;
}

nav ul li a {
  text-decoration: none;
  color: #3f51b5;
}

.text-box {
  margin-top: 130px;
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.text-box h1 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #3f51b5;
}

.text-box a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #3f51b5;
  padding: 10px 30px;
  font-size: 18px;
  margin-top: 50px;
  border-radius: 6px;
}

.user-box {
  background: #d9e0ff;
  position: absolute;
  top: 0;
  right: 12%;
  z-index: 1;
}

.user-box img {
  display: block;
  padding-top: 100px;
  width: 410px;
  margin-bottom: -205px;
}
