body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: calc(2em - 0.75vw);
    margin: 0;
    overflow: auto;
    background: rgb(36,200,240);
    background: linear-gradient(143deg, rgba(36,200,240,1) 0%, rgba(8,94,114,1) 100%);
}

p {
    margin: 0;
}

#hline {
    display: block;
    width: 80%;
    margin: 10px auto;
    border-bottom: 2.5px solid black;
}

.header {
    background: white;
    padding-bottom: 10px;
}

.logotext {
    font-family: "Dancing Script", cursive;
    text-align: center;
}

.header .logo {
    font-size: 6em;
    padding: 30px 0;
}

.links {
    text-align: center;
}

.links .filler {
    display: none;
}

.links a {
    display: inline-block;
    width: 175px;
    padding: 10px;
    color: black;
    text-decoration: none;
}

@media (min-width:400px) {
    .links .a, .links .b {
        display: inline-block;
    }
}

@media (min-width:1300px) {
    .links {
        position: absolute;
        width: 100%;
        top: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .links .filler {
        display: inline-block;
        width: 6em;
        font-size: 6em;
    }
}

.footer {
    background: white;
    padding: 10px 0 150px 0;
}

.footer .logo {
    font-size: calc(6em - 1vw);
    margin: 30px 0;
}

.footer p {
    text-align: center;
}

a:hover {
    color: rgb(220,220,220);
}