* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

:root {
    --primary: #2481cc;
    --primary-hover: #1463a3;
    --background: #ffffff;
    --text: #000000;
    --button-text: #ffffff;
}

body {
    background-color: var(--primary);
    padding: 12px;
}

.app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 24px);
    background-color: var(--background);
    border-radius: 48px;
    padding: 20px 32px;
}

.app__logo {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.app__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 40px;
    text-align: center;
}

.app__description {

}

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    height: 48px;
    background-color: var(--primary);
    color: var(--button-text);
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
}
.app-button:hover {
    background-color: var(--primary-hover);
}

.content-title {
    width: 100%;
    max-width: 800px;
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin: 0px auto 20px;
}

.content {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    font-size: 18px;
    color: var(--text);
    mbargin-bottom: auto;
}


.content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 24px;
}
.content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
}
.content p {
    margin-bottom: 12px;
    margin-top: 8px;
}
.content ul, .content ol {
    margin-left: 20px;
    margin-bottom: 12px;
}
.content a {
    color: var(--primary);
    text-decoration: none;
}

.content li {
    margin-bottom: 6px;
}