* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 20px;
    padding: 20px 0;
    background-color: white;
}

main {
    text-align: center;
    max-width: 700px;
}

h1 {
    color: #0a0a0a;

    font-size: 36px;
}

h2 {
    color: #737373;

    font-size: 20px;
    font-weight: normal;
}

a, a:visited {
    color: royalblue;
}

a:hover {
    color: purple;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 16px;
}

.logo {
    display: inline-block;
    padding: 10px;
    border-radius: 100%;

    height: 40px;

    background-color: #e7000b1a;
}

.logo img {
    width: 40px;
    height: 40px;
}

.description {
    border: 1px solid oklch(0.922 0 0);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 8px 8px -8px;
    border-radius: 14px;

    color: #737373;

    padding: 16px;
    margin: 32px 0;
    text-align: left;
}

.description-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #e7000b;

    font-weight: bold;
    margin-bottom: 16px;
}