* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
}

section {
    background-color: black;
    position: relative;
}

svg {
    position: absolute;
    width: 200px;
    fill: rgb(0, 81, 255);
}

@media (max-width: 768px) {
    svg {
        width: 150px;
    }
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.bigFancyText {
    font-family: "Courier New", Courier, monospace;
    font-size: 40pt;
}

.biggerFancierText {
    font-family: "Courier New", Courier, monospace;
    font-size: 50pt;
    color: white;
}

.niceFont {
    font-family: 'Brush Script MT', cursive;
    font-size: 80pt;
}

#text {
    text-decoration-color: none;
    color:rgb(0, 81, 255);
}

a {
    text-decoration: none;
    font-size: xx-large;
}

body {
    background-color: white;
}