@font-face {
    font-family: "ClashDisplay";
    src: url("assets/fonts/ClashDisplay-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --dark: #1d1d1b;
    --light: #9ba2a7;
}

body {
    font-family: "ClashDisplay", sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 2rem;
    text-align: center;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    background-image: url(assets/images/fi-te-logo-bg.svg);
    background-size: 77.5vh;
    background-repeat: no-repeat;
    background-position: bottom -3rem right 3rem;
}

* {
    box-sizing: border-box;
}

.logo {
    width: 40rem;
    max-width: 100%;
}

h1 {
    font-weight: 600;
    margin: 2em 0;
    font-size: clamp(2rem, 2vw, 3rem);
    hyphens: auto;
}

h2 {
    font-weight: 600;
    hyphens: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

section {
    max-width: 40rem;
    margin: 0 auto;
}

.information {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 5rem 0;
    flex-wrap: wrap;
}

.information-company {
    text-align: left;
}

.logo-container-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 3rem;
}

.logo-container a {
    display: block;
    padding: 0.5rem 1rem;
    background-color: var(--light);
    border-radius: 0.5rem;
    font-weight: 400;
}


