@font-face {
    font-family: business;
    src: url(fonts/00BusinessHistory-Regular.woff);
}

html { 
    background: url('background.png') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body{
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

h1, h2 {
    font-family: business;
    color: white;
    font-weight: normal;
}

h1{
    display: inline;
    margin: 0;
    margin-top: -9px;
    font-size: 5vw;
    width: fit-content;
}

h2{
    margin:0;
    font-size: 2vw;
    cursor: pointer;
}

#question-mark{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    background-color: white;
    border-radius: 50px;
    padding: 0.3vw 0.9vw;
    color: black;
    margin: 0;
    margin-top: 1vw;
    margin-left: 0.3vw;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0.7vw;
    width: 100%;
}

#info{
    display: none;
    position: relative;
    font-family: Helvetica;
    font-size: 1.1vw;
    color: black;
    background-color: white;
    min-height: 100%;
    width: 67%;
    padding: 0.35em 0.45em;
    z-index: 100;
    margin: 0;
    margin-top: 1vw;
    margin-left: 0.3vw;
}

h2 > a{
    background-color: white;
    border-radius: 10px;
    padding: 0 10px;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

h2 > a:hover {
    box-shadow: 0 0 5px 8px rgb(9, 245, 127);
    color: white;
    background-color: black;
}

h2 > a:visited {
    color: red;
    background-color: black;
}

.title{
    position:absolute;
}

.marquee-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 105%;
    background-color: white;
    color: black;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-text {
    font-family: business;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
