html {
    overflow-x: hidden;
}
body {
    background-image: url('./bg.png');
    background-attachment: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.logocontainer {
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logocontainer img {
    max-width: 500px;
}
h2, p, span {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h2 {
    font-size: 2rem;
}
p {
    font-size: 2rem;
}
.textbox {
    width: 60ch;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1ch;
    border-radius: 10px;
}
footer {
    position: fixed;
    bottom: 0;
}