@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 24px;
}

body {
    font-family: 'Gibson', sans-serif;
    line-height: 1.5;
    overflow: hidden;
    background: url("media/page-background.jpg");
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

p {
    font-family: 'Covered By Your Grace', sans-serif;
}

#backgroundCanvas {
    position: fixed;
    filter: blur(1px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 1px -1px 167px -34px rgba(0, 0, 0, 0.39) inset;
    -webkit-box-shadow: 1px -1px 167px -34px rgba(0, 0, 0, 0.39) inset;
    -moz-box-shadow: 1px -1px 167px -34px rgba(0, 0, 0, 0.39) inset;
    z-index: -1;
}


.points {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#444 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.panel {
    background-color: #ffffffed;
    padding: 2.25rem 2.25rem 1rem 2.25rem;
    border-radius: 20px;
    box-shadow: 0 13px 5px #00000003, 0 7px 4px #0000000d, 0 3px 3px #00000017, 0 1px 2px #0000001a;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 380px;
    margin-top: -2.7rem;
}

.panel .arrow {
    position: absolute;
    margin-top: 10.4rem;
    margin-left: 11.5rem;
    width: 1.5rem;
    font-weight: 800;
    transform: rotate(-13deg);
}

.panel img {
    max-width: 320px;
    margin-bottom: 2rem;
}

.panel p {
    text-align: center;
}

/*
.panel .button {
    background: linear-gradient(104deg, #000, #111216);
    border-radius: .75rem;
    box-shadow: inset 0 .5px 1px .5px #0000001a;
    padding: .25rem;
    width: fit-content;
    margin: 1rem;
}
*/

.button a {
    gap: .5rem;
    padding: .5rem 2rem .5rem 2rem;
    margin: 1rem;
    background: linear-gradient(180deg, #0000, #ffffff0d 50%, #ffffff26), #e84b11;
    box-shadow: inset 0 1px 1px 0 #0000000d, inset 0 1px 4px 0 #ffffff80, inset 0 -2px 4px 0 #e84b11, 0 1px 4px 0 #0003;
    color: #ffffffed;
    font-weight: 800;
    position: relative;
    align-items: center;
    border: 0;
    border-radius: .5rem;
    display: inline-flex;
    opacity: 1;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
}

.button a:hover {
    transform: translateY(-1px);
}

footer {
    padding: 2rem 0 0 0;
    font-size: 12px;
}

footer p {
    font-family: Montserrat, sans-serif;
}