* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    background: transparent;
    outline: none;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #101010;
}

header {
    width: 100vw;
    padding-bottom: 20px;
}

header .top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 40px;
}

header .top p {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

header .top #pageid {
    padding-left: 20px;
    padding-right: 30px;
}

header .top .yellow {
    color: yellow;
    padding-right: 30px;
}

header .banner {
    width: 100%;
    height: 110px;
    background-color: #004aad;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 7px;
    font-size: 70px;
    font-weight: bold;
    text-decoration: none;
}

header .banner svg {
    width: auto;
    height: 90%;
}

h1 {
    font-size: 40px;
    width: 100%;
    padding-left: 20px;
}

footer {
    width: 100%;
    height: 40px;
    background-color: #004aad;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    position: fixed;
    bottom: 0;
}

@media (max-width: 600px){
    header .top p {
        font-size: 16px;
        padding-left: 10px !important;
        padding-right: 0 !important;
    }

    header .banner {
        font-size: 50px;
    }

    h1 {
        font-size: 30px;
    }
}
