@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
}

#canvas1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background: url('UnicornVectorGradient_7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#box {
    padding: 1em;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /*flex*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: flext-start;
    -ms-flex-pack: flext-start;
    justify-content: flext-start;
}

#box img {
    width: 10em;
}

#box #text {
    font-family: 'Righteous', cursive;
}

#box #text a {
    color: #081738
}

#box #text a:hover {
    color: #3667ff
}
