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

:root{
    --text-color: #ffffff;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

a{
    text-decoration: none;
}

html{
    width: 100%;
    height: 100%;
}

body{
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Lexand Deca', sans-serif;
    width: 100%;
    height: 100%;
}

.display-1{
    font-size: calc(1.625rem + 4.5vw);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.display-2{
    font-size: calc(1.575rem + 3.9vw);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.display-3{
    font-size: calc(1.525rem + 3.3vw);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.display-4{
    font-size: calc(1.475rem + 2.7vw);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.display-5{
    font-size: calc(1.425rem + 2.1vw);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

main{
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
}

#content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2{
    margin-bottom: 2rem;
}

h1{
    margin-bottom: 3rem;
}

a{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: inherit;
    color: #ffffff;
    /*color: #717171;*/
    font-weight: 600;
    background: #0b2751;
    /*background: #313131;*/
    border: 1px solid #414141;
    padding: 16px 20px;
    font-size: inherit;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 6px;
}

a:hover{
    background-color: #111827;
    border-color: #fff;
}

.button {
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35em;
    padding: 0.75em 1.25em 0.75em 1em;
    color: #fff;
    border: 1px solid transparent;
    font-weight: 700;
    border-radius: 2em;
    font-size: 1rem;
    box-shadow: 0 0.7em 1.5em -0.5em hsla(223, 62%, 51%, 0.74);
    transition: transform 0.3s;

    background: transparent linear-gradient(
        90deg,
        rgb(54, 75, 208) 0%,
        rgb(116, 144, 254) 100%
    );
}

.button__icon {
    width: 1.5em;
    height: 1.5em;
}

.button:hover {
    border-color: #f4f5f2;
}

.button:active {
    transform: scale(0.98);
    box-shadow: 0 0.5em 1.5em -0.5em hsla(249, 62%, 51%, 0.745);
}

/* From Uiverse.io by Gautammsharma */
main{
    min-height: 100%;
    width: 100%;
    position: relative;
    background-color: #f8fafc;
    z-index: 2;
}

.grid-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: linear-gradient(to right, #e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
    background-size: 20px 30px;
    -webkit-mask-image: radial-gradient(
        ellipse 70% 60% at 50% 0%,
        #000 60%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 70% 60% at 50% 0%,
        #000 60%,
        transparent 100%
    );
}
