*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
@font-face {
    font-family: 'Meorgine';
    src: url(/font/Meorgine.otf);
}
body{
    font-family: 'Meorgine';
    background: radial-gradient(circle,#a9353e 0,#2d0606 50%,#a9353e 100%);
    background-size: 400% 200%;
    background-repeat: repeat;
    background-position: 50%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: 100dvh;
    padding: .5rem;
}
.title{
    line-height: inherit!important;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(20deg,#bd7b00,#f7e4a3 50%,#bd7b00);
    background-size: 20% 100%;
    font-size: clamp(1.5rem, 1.125rem + 3vw, 3rem);
    font-weight: 600;
    text-align: center;
}
.link{
    line-height: inherit!important;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(20deg,#bd7b00,#f7e4a3 50%,#bd7b00);
    background-size: 20% 100%;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 3px solid #c07e00;
}