* {
    font-family: Comfortaa, serif;

    padding: 0;
    margin: 0;
}

b {
    font-weight: 700;
}

body {
    background: #042f2e;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    width: 100vw;
    height: 100vh;
}

.root {
    width: 240px;

    padding: 8px;

    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: #f0fdfa;

    border-radius: 4px;

    column-gap: 16px;
}

.title {
    width: 100%;

    display: flex;

    align-items: start;
    justify-content: center;
    flex-direction: column;

    padding-bottom: 16px;
}

.title h1 {
    color: #042f2e;

    font-size: 36px;
    font-weight: 600;
}

.title h2 {
    color: #042f2e;

    font-size: 12px;
    font-weight: 500;
}

.info {
    display: flex;

    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.info h3 {
    font-size: 14px;
    font-weight: 500;

    color: #000000;
}

.info p {
    font-size: 12px;
    font-weight: 400;

    color: #115e59;
}

.copyright {
    width: 100%;

    padding-top: 8px;
    padding-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    font-weight: 300;
    font-size: 10px;

    color: #042f2e;
}

.logo {
    width: 120px;
    height: 120px;

    object-fit: contain;
}