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

:root {
  --accent-color: #ea6402;
}

body {
  height: 100dvh;

  background-image: url(./images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 96px;
}

img {
  display: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.inter-text {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'slnt' 0;

  color: #333;
}

.container {
  padding: 64px;
  background-color: white;

  display: flex;
  flex-direction: column;
  gap: 28px;
}

h1 {
  font-size: 54px;
}

p {
  max-width: 456px;

  font-size: 32px;
  line-height: 1.2;

  text-wrap: balance;
}

.accent {
  color: var(--accent-color);
}

.email {
  font-size: 24px;
  color: inherit;
  text-decoration: none;

  transition: 0.1s ease-in-out;

  &:hover {
    text-decoration: underline;
    color: var(--accent-color);
  }
}

@media (width < 768px) {
  body {
    background: none;

    padding: 0;

    flex-direction: column;
    justify-content: flex-start;
  }

  img {
    display: block;
  }

  .container {
    width: 100%;
    padding: 32px;
  }

  h1 {
    font-size: 32px;
  }

  p,
  .email {
    font-size: 18px;
  }
}
