:root{
    --color1:#CF1D1F;
    /* --color2:#50AF93; */
}
@font-face {
  font-family: 'Quicksand';
  font-weight: 400,500,600,700;
  src: url(/assets/qs.ttf) format('truetype');
}
.quicksand-font {
    font-family: "Quicksand", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    height: 100%;
    font-size: 16px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding-top: 6%;
}
/* error pages */
.container.error .logo .bi{
    display: block;
    font-size: 4rem;
    color:var(--color1);
}

.container.error .title {
    /* margin-top: 24px; */
    font-size: 110px;
    color: var(--color1);
    letter-spacing: 10px;
    font-weight: 400;
}
.container.error .desc {
    font-size: 16px;
    color: #222;
    text-align: center;
    line-height: 24px;
}
.container.error .link{
    margin-top:10px;
}
.container.error a{
    color: var(--color1);
    font-size: 22px;
}