/* Font-face declarations */
@font-face {
    font-family: 'ITC Avant Garde Gothic Std';
    src: url('ITCAvantGardeStd-Md.woff2') format('woff2'),
         url('ITCAvantGardeStd-Md.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Std Book';
    src: url('ITCAvantGardeStd-Bk.woff2') format('woff2'),
         url('ITCAvantGardeStd-Bk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Std';
    src: url('ITCAvantGardeStd-Bold.woff2') format('woff2'),
         url('ITCAvantGardeStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Basic resets */
html, body {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: 'ITC Avant Garde Gothic Std';
}

/* Main App styling */
div {
    background-color: #282c34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 0.8vmin);
    color: white;
    line-height: 170%;
}

main {
    max-width: 1000px;
}

img {
    height: calc(100px + 17vmin);
    pointer-events: none;
}

/* Animations */
@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: no-preference) {
    img {
        animation: App-logo-spin infinite 5s ease-in-out;
    }
}

/* Additional elements styling */
a {
    color: #f9eb0a;
}

hr {
    border: 2px solid #f9eb0a;
    width: 50%;
    margin-top: calc(10px + 2vmin);
    margin-bottom: calc(10px + 2vmin);
}

h1, h2 {
    color: #f9eb0a;
}

h1 {
    font-size: calc(10px + 3vmin);
}

h2 {
    font-size: calc(10px + 2vmin);
}

ul {
    text-align: left;
}
