:root{
    --bg: #EFF1F2;
    --bg-primary: #FFD832;
    --text: #000000;
    --text-secondary: #636363;
}

::-moz-selection {
    color: var(--text);
    background: var(--bg-primary);
  }

::selection {
    color: var(--text);
    background: var(--bg-primary);
}

html, body{
    font-family: Arial, sans-serif;
    font-size: 17px;
    background-color: var(--bg);
    position: relative;
    min-height: 100vh;
}

main{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.draw {
    stroke-dashoffset: 631;
    stroke-dasharray: 631;
    animation: drawline 4s linear 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
 }

 @keyframes drawline {
    to { stroke-dashoffset: 0;}
 }

main svg{
    width: 150px;
    height: auto;
    display: block;
    margin: auto;
}

main .title{
    font-size: 2rem;
    margin-top: 20px;
    font-weight: bold;
}

main .sub-title{
    font-size: 1rem;
    margin-top: 0px;
    color: var(--text-secondary);
}

main .text{
    font-size: 1rem;
    margin-top: 20px;
}

main .btn-group{
    margin-top: 30px;
}

main .btn{
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    background-color: var(--bg-primary);
    padding: 0px 40px;
    line-height: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    text-transform: uppercase;
    display: inline-block;
}

main .btn:hover{
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.56);
    box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.56);
}

footer{
    position: fixed;
    text-align: center;
    bottom: 0;
    right: 0;
    left: 0;
}

footer a{
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.1rem;
    color: var(--text-secondary);
}

footer a:hover{
    text-decoration: underline;
    color: var(--text-secondary);
}