/* custom fonts */

@font-face {
    font-family: Inconsola;
    src: url(fonts/Inconsolata/static/Inconsolata-SemiBold.ttf)
}

/* general styles */
body {
    background-image:url(background.png);
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Inter, sans-serif;
    margin:0;
    height:100vh;
    padding-top:32px;
}
h1,
h2,
h3,
p,
li {
    color: white;
}
main,
header,
footer,
nav {
    background: rgba(0, 0, 0, 0.7); /* black transparent background for text*/
    padding: 5px;
    width:1200px;
    margin:auto;
}
header{
    margin-bottom:0;
    height:60px;
}
h1{
    height:auto;
    margin-left:10px;
}
/* nav style */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: skyblue;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

nav ul li a:hover {
    color: aqua;
}

marquee {
    color: white;
    font-family: Inconsolata;
}
footer{
    text-align:center;
}
footer p,a{
    margin:6px;
}
