:root {
  --white: #e9e9e9;
  --grey: #868686;
  --black: #1f306e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle, var(--black), #343434);
}

li,
a {
  text-decoration: none;
  list-style: none;
}

.body1 {
  width: 1440px;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  place-self: center;
  justify-content: space-between;
}

img {
  display: block;
  max-width: 100%;
}

.rightpart img {
  border-radius: 200px;
  border: 2px solid var(--grey);
  box-shadow: #1a1a1a 0px 0px 30px;
  width: 100%;
}

.leftpart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

h1 {
  color: var(--white);
  font-size: 5rem;
  margin-bottom: 1rem;
}

h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

ul {
  display: flex;

}

li a {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 40px;
  background-color: #ffb4fa;
  border-radius: 10px;
}

li a:hover {
  background-color: #f5487f;
  color: var(--white);
}

li {
  padding: 30px 0;
  width: 400px;
}
