html {
    font-size: 16px;
    font-family: sans-serif;
    color: rgb(198, 208, 245);
}

body {
    margin: 0;
    margin-left: 15%;
    margin-right: 15%;
    background-color: rgb(48, 52, 70);
}

main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link {
    text-decoration: none;
    color: rgb(202, 158, 230);
}

.link:hover {
    text-decoration: underline;
}

.logo {
    height: 4rem;
    width: 4rem;
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.5rem rgb(36, 39, 58);
}

.icon {
    height: 24px;
    width: 24px;
}

.header {
    display: flex;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
    background-color: rgb(65, 69, 89);
    border-radius: 0 0 1rem 1rem;
}

.main-section {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
    background-color: rgb(65, 69, 89);
    border-radius: 1rem;
}

.title {
    font-size: 48px;
    margin: 0;
}

.coming-soon {
    font-size: 48px;
    color: rgb(231, 130, 132);
    margin: 0;
    margin-bottom: 0.5em;
    transform: rotate(-5deg);
}

.main-buttons {
    display: flex;
    gap: 1rem;
}

.button {
    display: flex;
    background-color: rgb(202, 158, 230);
    border: none;
    border-radius: 1rem;
    gap: 0.25rem;
    padding: 0.25rem;
    padding-right: 0.5rem;
    color: rgb(35, 38, 52);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0.1rem 0.1rem 0.5rem rgb(36, 39, 58);
    align-items: center;
}

.install-button {
    background-color: rgb(166, 209, 137);
}

.docs-button {
    background-color: rgb(140, 170, 238);
}

.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
    gap: 1rem;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
}

.footer > * > p {
    margin: 0;
}

.p-align {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.footer-section-1 {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

.footer-section-2 {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section-3 {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: end;
    text-align: end;
}

.heading {
    font-size: 24px;
    margin: 0;
}

.subheading {
    font-size: 16px;
    margin: 0;
    color: rgb(165, 173, 206);
}
