*, *::before, *::after {
    box-sizing: inherit;
}

html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    padding: 0 24px 24px;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #070602;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #D9D9D9;
}

@media (min-width: 768px) {
    body {
        padding-right: 40px;
        padding-left: 40px;
        padding-bottom: 32px;
    }
}

header {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
}

.email-link {
    margin-top: 3px;
    color: #01AB91;
    text-decoration: none;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.04em;
}

main {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    main {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

h1 {
    margin: 0;
    font-size: 72px;
    line-height: 64px;
    letter-spacing: -0.08em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 140px;
        line-height: 128px;
    }
}

.description {
    margin-top: 22px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .description {
        margin-top: 34px;
    }
}

footer {
    margin-top: auto;
}

.credentials {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
}
