html {
    background: #191D32;
    color: white;
}

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}


body {
    padding: 0;
    margin: 0;
}

.layout {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;
    text-align: center;
}

.heading {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
}

.description {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

button {
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: white;
    background-color: #F58A07;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
    border: none;

}

a {
    text-decoration: none;
}

.header {
    background: #F7F7F8;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1440px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}