*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    font-family: 'Manrope', sans-serif;
    color: white;
    background: linear-gradient(180deg, #080714 0%, #000000 100%);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 191px 20px 0px; 
    overflow: hidden;

}

.logo {
    margin-bottom: 60px;
    max-width: 162px;
    width: 100%;
}

.wrapper {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.headline {
    font-family: 'Clash Display';
    font-weight: 700;
    font-size: 67px;
    text-align: center;
    margin-bottom: 12px;
}

.description {
    display: inline-block;
    font-family: 'Manrope';
    text-align: center;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
}

.note {
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;

    text-align: center;
    margin-top: 60px;
    margin-bottom: 14px;
    color: #5A9BF6;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: white;
    border: 2px solid #5A9BF6;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(60, 130, 246, 0.4);

    font-family: 'Clash Display';
    font-weight: 600;
    font-size: 29px;
    line-height: 28px;
}

.btn-primary:hover {
    background-color: #5A9BF6;
    color: #fff;
    box-shadow: 0 0 15px rgba(60, 130, 246, 0.7);
}

.footer {
    margin-top: 160px;
    padding: 0px 20px 40px;
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 19px;
    line-height: 29px;
    align-items: center;
    text-align: center;
    color: #999999;
}

.footer .heart {
   color: #5A9BF6;
}

@media (max-width: 606px) {
    .headline {
        font-weight: 600;
        font-size: 36px;
        letter-spacing: 0.01em;
    }

    .description {
        font-size: 16px;
    }

    .note {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 24px;
    }

    .footer {
        font-size: 16px;
    }
}

@media (max-width: 352px) {
   .headline {
       font-size: 32px;
   }
   
   .description {
      font-size: 13px;
   }

   .note {
      font-size: 13px;
   }


    .btn-primary {
        font-size: 21px;
    }

    .footer {
        font-size: 13px;
    }

}



