@font-face {
  font-family: "BricolageGrotesque";
  src: url("assets/BricolageGrotesque-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    font-family: "BricolageGrotesque", sans-serif;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.header .logo {
    max-width: 300px;
    @media (min-width: 768px) {
        max-width: 500px;
    }
}

.header .address {
    color: #000000;
    display: flex;
    margin-bottom: 1rem;
    &:hover {
        text-decoration: none;
    }
}

.header .links {
    display: flex;
    gap: 1rem;
}

.header .link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 2px solid #000000;
    border-radius: 50%;
    padding: 1rem;
    color: #000000;
    margin-top: 1rem;
    text-decoration: none;
    font-size: 26px;
    &:hover {
        background-color: #000000;
        color: #ffffff;
    }
}


.claim {
    display: flex;
    justify-content: center;
}