@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap');

:root {
    --color-primary: #000000;
    --color-secondary: #3614f6;
    --color-bg: #fafafa;
}

html, body {
    padding: 0;
    margin: 0;
    background-color: var(--color-bg);
    font-family: 'Inter', sans-serif;
    /* font-size: 16px; */
}

body {
    padding: 2rem;
}

h1, h2, h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    /* color: var(--color-primary); */
}

h1 {
    font-size: 1,9375rem;
    /* line-height: 2,0625rem; */
}

h2 {
    font-size: 1,75rem;
    /* line-height: 1,5rem; */
}

h3 {
    font-size: 1,375rem;
    margin-bottom: -0.5rem;
    /* line-height: 1,5rem; */
}

p {
    font-size: 1rem;
    /* line-height: 122%; */
}

small {
    font-size: 0,875rem;
    line-height: 8px;
}

img {
    width: 100%;
    margin-bottom: -0.5rem;
}

iframe {
    /* display: flex; */
    border: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s all;
    background: inherit;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    cursor: pointer;
}

a:hover {
    color: var(--color-secondary);
}

#header {
    margin-bottom: 6rem;
}

#header > h1 {
    /* margin-bottom: .5rem; */
}

main {
    width: 100%;
    /* background-color: blue; */
    /* width: 100%; */
    /* padding: 3rem; */
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    row-gap: 3rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
}

.card {
    /* margin: 1rem; */
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    /* min-width: 15vw; */
}

.display {
    width: 80vw;
    height: 80vw;
    overflow: hidden;
    background-color: black;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.disabled {
    /* color: currentColor; */
    cursor: not-allowed;
    opacity: 0.2;
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
    .display {
        width: 20vw;
        height: 20vw;
    }
}

#footer {
    max-width: 768px;
}

#footer a {
    text-decoration: underline;
}