@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('NeueHaasDisplayRoman.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Space Mono';
    src: url('SpaceMono-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

body {
    background: url("background.webp") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logocontainer {
    vertical-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.logo {
    vertical-align: top;
    width: 250px;
    margin-bottom: 20px;
    max-width: 80%;
}

.textbox {
    background: rgba(256, 256, 256);
    padding: 20px;
    border-radius: 0px;
    vertical-align: bottom;
    margin: 10%;
    text-align: left;
    max-width: 60%;
}

.textwrap {
    display:flex;
    align-items: top;
}

h1 {
    font-size: 18px;
    font-family: 'Space Mono';
    color: #0047BA;
    width: 25%
}

p {
    font-size: 18px;
    width: 70%;
}

@media (max-width: 600px) {
    p {
      font-size: 14px;
    }
    h1 {
        font-size: 14px;
    }
    .textbox {
        max-width: 80%;
    }
}

a {
    color: #0047BA;
}