.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #e1e7f3;
  padding: 0 40px; }

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 120px; }
  .logo img {
    width: 500px; }
    @media (max-width: 768px) {
      .logo img {
        width: 300px; } }

.body {
  margin: 80px 0;
  text-align: center;
  font-weight: 700; }
  .body h1 {
    font-size: 70px;
    background: var(--bg-color-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (max-width: 768px) {
      .body h1 {
        font-size: 48px; } }
    @media (max-width: 640px) {
      .body h1 {
        font-size: 32px; } }
  .body p {
    font-size: 20px;
    margin: 10px 0 60px 0;
    background: var(--bg-color-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (max-width: 768px) {
      .body p {
        margin: 20px 0 80px 0; } }
    @media (max-width: 640px) {
      .body p {
        margin: 20px 0 60px 0; } }
  .body a {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    text-decoration: none; }

.coppy-right {
  margin-top: auto;
  padding-bottom: 20px;
  text-align: center;
  opacity: 0.6; }
