:root {
    --background-color: rgb(26, 26, 27);
    --secondary-background-color: rgb(42, 42, 44);
    --primary-color: rgb(255, 255, 255);
    --link-color: rgb(180, 180, 180);
    --link-color-hover: rgb(255, 255, 255);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    font-family: "Averia Libre", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-color);
}

p {
    font-size: 1.25rem;
    line-height: 150%;
    font-weight: 500;
}

h1 {
    font-size: 3.5rem;
    line-height: 120%;
    font-weight: 100;
}

h2 {
    font-size: 2rem;
    line-height: 130%;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    line-height: 140%;
    font-weight: 700;
}

a {
    font-size: 1.25rem;
    color: var(--link-color);

    &:hover {
        color: var(--link-color-hover);
    }
}

address {
    font-size: 1.25rem;
}

.container {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    max-width: 60rem;
    margin: 1rem auto;
    padding: 10px;
}

.logo-container {
    max-height: 10rem;
    margin: 0 auto;

    & svg {
        width: 100%;

        .text {
            fill: var(--primary-color);
        }

        circle {
            stroke: var(--primary-color);
        }
    }
}

.title-container {
    margin: 0 auto;
}

.contact-information-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 10px;
    background-color: var(--secondary-background-color);
    border-radius: 1rem;
    max-width: 40rem;
    width: 100%;
    padding: 1rem;

    & h2 {
        margin: 0 auto;
    }

    & ul {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: 1rem;

        & li {
            background-color: var(--background-color);
            border-radius: 1rem;
            padding: 1rem;

            display: flex;
            flex-direction: column;
            gap: 0.75rem;

            .section-title {

                display: grid;
                grid-template-columns: auto auto;
                align-items: center;
                justify-content: start;

                .icon-container {
                    margin: 0 10px 0 0;
                    svg {
                        display: block;
                        width: 2rem;

                        path {
                            stroke: var(--primary-color)
                        }
                    }
                }
            }
        }
    }
}