* {
    box-sizing: border-box;
    font-family: "Bitter", Georgia, 'Times New Roman', Times, serif;
}

/* TYPOGRAPHY */

@font-face{
    font-family: "Bitter";
    src: url("fonts/BitterPro-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

.font-bitter {
    font-family: "Bitter", Georgia, 'Times New Roman', Times, serif;
}

/* ELEMENTS */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1rem;
}

h1, h2, h3, h4, h5, h6, p, a {
    font-size: 14px;
    font-family: "Bitter", Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin: 0;
}


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

figure {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

img {
    display: block;
    max-width: min(60vw, 400px);
    width: 100%;
    height: auto;
}

.social {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    margin-top: 1rem;
    gap: 0;
}

