html {
    background: url("assets/bg.png") no-repeat fixed center;
    background-color: black;
}

@font-face {
    font-family: 'CascadiaCode';
    src: url("assets/CascadiaCode-Regular.ttf"),
        url("assets/CascadiaCode-Regular.woff2"),
        url("assets/CascadiaCode-Regular.otf");
}

.center {
    text-align: center;
    margin: auto;
    right: 50%;
    left: 50%;
}


.card {
    margin-top: 2%;
    width: 100%;
    max-width: 400px;
    background-color: rgb(30, 30, 30);
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 60%);
    padding: 60px;
    margin: 0, 0;
    border-radius: 50px;
}


@media screen and (max-width: 540px) {
    .card {
        max-width: 70vw;
    }
}


.dontspace {
    display: inline-flex;
}

.border:hover {
    background-color: purple;
    transition: .2s;
}

.border {
    transition: .2s;
    background-color: rgba(0, 0, 0, 20%);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 10%;
    padding-bottom: 2%;
}

.innerborder {
    background-color: rgba(0, 0, 0, 20%);
}

html {
    font-family: 'CascadiaCode';
    color: white;
}

p {
    font-size: 100%;
}

h1 {
    font-size: 200%;
}

img {
    font-size: 200%;
}

.blur {
    filter: blur(20px);
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
}
