@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* The above line is a Google Font import. */

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#logo {
    margin: 3px;
    align-self: self-start;
    max-width: 45px;
    float: left;
}

.toppage {
    position: fixed;
    top: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--light-background-color);
    width: 100%;
    z-index: 9999;
}

.toppage a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    color: var(--light-color-up-page);
}

.toppage a:hover {
    background-color: var(--light-background-color2);
}

.toppage:after {
    content: "";
    display: table;
    clear: both;
}

.wrapper {
    width: 420px;
    background: var(--light-background-wrapper);
    border: 2px solid var(--light-border);
    backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.wrapper a {
    text-decoration: underline var(--black);
    text-align: center;
    height: 100%;
}
