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

img {
  max-width: 100%;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #2a283a;
  color: antiquewhite;
  font-family: monospace;
  display: flex;                                                                                                                                                                                                                    
  align-items: center;
  justify-content: center;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.container .header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.container .header h1 {
  font-size: 6rem;
  font-weight: 900;
  color: #15e9ec;
}

.container img {
  width: 35%;
  border-radius: 2rem;
  border: 8px solid whitesmoke;
  transform: rotate(-30deg);
  z-index: -1;
}

.container p {
  text-align: center;
  font-size: 2rem;
}

.container p span {
  color: #15e9ec;
}