@font-face {
    font-family: 'pixel-1';
    src: url('fonts/Web437_EagleSpCGA_Alt3.woff') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'pixel-2';
    src: url('fonts/Web437_EagleSpCGA_Alt3-2y.woff') format('woff');
    font-weight: bold;
}

@font-face {
    font-family: 'pixel-3';
    src: url('fonts/Web437_EagleSpCGA_Alt3-2y.woff') format('woff');
    font-weight: bold;
}



/* src/app.css */

/* Apply globally to the entire app */
:root {
    --font-primary: 'pixel-2', monospace;
    --font-bold: 'pixel-1', monospace;
    /* --font-secondary: Arial, Helvetica, sans-serif; */
    --bg-color: #eee;
    --bg-color-2: #eee;
    --bg-color-3: #ececec;
    /* --bg-color: #5c7ad2;
    --bg-color-2: #5c7ad2;
    --bg-color-3: #3c5ad2; */
    /* --font-1: #f9f8ff; */
    --font-1: #111;
    /* --font-2: #2c2c2c; */
    --font-2: #ff5b67;
    --font-3: #345448;
    --font-4: #ff5b98;
    --green: #3f3;
    --dark: black;
    --dark-grey: #464555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

html{
    font-size: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    background-color: var(--bg-color-3);
    color: var(--font-1);
    /* line-height: 1.6; */
}

pre{
    font-family: var(--font-primary);

}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font--bold);
    font-weight: 700;
    line-height: 1.2;

}

h2 {
    font-family: var(--font--bold);
    font-size: 24px;
    color: var(--font-2);
    text-shadow: 0px 3px 10px var(--font-4);
    /* text-decoration: overline 2px var(--font-3); */
}

h3 {
    font-size: 20px;
    color: var(--font-2);
    text-shadow: 0px 3px 10px var(--font-4);
    text-decoration: underline 2px var(--font-3);
}

/* Italic text */
em,
i {
    font-family: var(--font-primary);
    font-style: italic;
}

/* Bold text */
strong,
b {
    font-family: var(--font-primary);
    font-weight: 700;
}

header{
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
}

main {
    min-height: 100vh;
}

a {
    text-decoration: underline 2px #f33;
    /* color: black; */
    color: var(--font-2);
    text-shadow: 0px 0px 10px var(--font-2);
}

p {
    text-shadow: 0px 0px 10px var(--font-1);
}


blockquote {
    font-style: italic;
    font-size: 1rem;
    color: var(--font-2);
}

blockquote p{
    text-shadow: 0px 0px 10px var(--font-2) !important;
    text-decoration: underline 2px black;
}

footer,
header {
    margin: auto;
    max-width: 600px;
}


pre:hover {
    font-style: italic;
}

.main {
    max-width: 600px;
    margin: auto;
    /* background-color: var(--bg-color); */
    background: linear-gradient(0deg,
            var(--bg-color-2) 0%,
            var(--bg-color) 49%,
            var(--bg-color-2) 100%);
    box-shadow: 0px 0px 30px black;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* justify-content: center; */
}

.img-container{
    padding: 20px;
}

.img-container img{
    object-fit: cover; 
    max-width: 400px;
    box-shadow: 0px 0px 10px black;
}

.art,
.academia {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.card {
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
    align-items: center;
    /* border: solid 2px var(--font-3); */
    padding: 0.5rem;
    background-color: var(--bg-color);
    margin-bottom: 30px;
    /* border-radius: 3px; */
    /* box-shadow: 0px 0px 10px var(--font-2); */
}

.card {
    /* transform: */
    /* rotateZ(var(--rotation))  */
    /* rotateX(0deg)  */
    /* translateZ(0rem); */
    /* transform-origin: 50% 50%; */
    /* transform-style: preserve-3d; */
    /* box-shadow: 1rem 1rem 2rem var(--font-2); */
    /* transition: 0.25s ease transform; */
}

/* .card:hover{
    transform:
    scale(1) 
    rotateZ(0deg)  !important;
} */

.date, .credits {
    font-size: 9px;
    text-shadow: 0px 0px 5px var(--font-1);
}

.title {
    color: var(--font-2);
    font-size: 5rem;
    /* text-decoration: overline var(--font-3); */
    text-shadow: 0px 0px 20px var(--font-4);
}

/* .link{
    text-shadow: 3px 3px 10px var(--font-2);
} */

.image {
    width: 100%;
    margin: auto;
    box-shadow: 0px 0px 10px black;
}

.image img {
    width: 20%;
    height: auto;
    object-fit: contain;
    margin: auto;
}


@media only screen and (min-device-width: 320px) and (max-device-width: 767px) {
    html{
        font-size: 80%;
    }

    .img-container img{
        max-width: 300px;
    }

}