@font-face {
    font-family: 'paragon';
    src: url('./webfonts/paragon/normal.woff');
    font-style: normal;
}

@font-face {
    font-family: 'paragon';
    src: url('./webfonts/paragon/italic.woff');
    font-style: italic;
}

@font-face {
    font-family: 'geist';
    src: url('./webfonts/geist/normal.woff2');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'geist';
    src: url('./webfonts/geist/italic.woff2');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'whois-mono';
    src: url('./webfonts/whois-mono.woff');
}

h1 {
    font-family: paragon;
    font-style: italic;
}


body {
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-content: center;
    align-items: center;
    background-image: url("./assets/bgact.gif");
    background-repeat: repeat;
    
    overflow: hidden;
    
}

div#main {
    background-color: beige;
    width: 700px;
    height: 100vh;
}

div#content {
    display: block;
    max-height: 40vh;
    overflow-y: scroll;
    padding: 24px;
    font-family: 'geist';
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-align: center;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

nav a {
    font-size: 20px;
    font-family: whois-mono;
    color: red;
    
}

nav a:hover {
    text-shadow: 0px 0px 8px indianred;
}