* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    color: black;
    padding: 20px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

h1 {
    margin-bottom: 20px;
    overflow-wrap: break-word;
    line-height: 1.3;
}

h2 {
    margin-top: 32px;
    overflow-wrap: break-word;
    line-height: 1.3;
}

p {
    margin: 16px 0 8px 0;
    overflow-wrap: break-word;
}

ul {
    margin-bottom: 16px;
    padding-left: 42px;
}

li {
    margin-bottom: 6px;
}

hr {
    margin: 64px 0 64px 0;
}

/* Landing page (index.html) */
.landing-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.status {
    font-size: 21px;
    font-weight: 500;
}

.description {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 24px 0;
    color: #aaa;
}

.bot-link {
    display: inline-block;
    padding: 15px 30px;
    background: #f43131;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: ease 0.3s;
    margin-bottom: 10px;
}

.bot-link:hover {
    opacity: 0.8;
}

.contact {
    font-size: 15px;
    color: #aaa;
}

.contact a {
    color: #f43131;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
