:root {
    --color-background: #efeff5;
    --color-text: #032075;
    --color-white: #ffffff;
}

.nunito-font {
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

body {
    background-color: var(--color-background);
    color: var(--color-text);

    margin: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.title {
    display: flex;
    gap: 16px;
    align-items: center;
}

.logo {
    width: 64px;
    height: 64px;
}

.card {
    background-color: var(--color-white);
    color: var(--color-text);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;

    width: 100%;
    @media screen and (min-width: calc(464px)) {
        max-width: 400px;
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px 48px;

    @media screen and (min-width: 768px) {
        flex-direction: row;
    }

    a {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        align-items: center;
        gap: 8px;
    }
}

.linkImg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}