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


body{
  margin: 0;
     /* color: #101010; */
     background: #272727;
  font-family: "Raleway";
}
.header {
    padding: 1em 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.header > .title  {
    font-family: 'Raleway';
    font-size: 28px;
    color: #fff;
    animation: loadHeader 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.sub-title {
    width: auto;
    background-color: #292f2e;
    padding: 0.5em;
    transition: all 0.3 cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header > .sub-title {
    font-family: 'Raleway';
    font-size: 20px;
    color: rgb(69, 179, 196);
}
.header > .sub-title > a {
    text-decoration: none;
    color: rgb(152, 246, 247);
}

.debug-box {
    width: auto;
    background-color: #131313;
    padding: 0.5em;
}
.status {
    text-align: center;
    color: #dae72e;
    /* width: 20%; */
}

canvas{
    background-color: #131313;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: 5px solid white;
    border-radius: 15px;
    /* transition:  0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    animation: loadCanvas 0.3s ease-in-out;
}

@keyframes loadHeader {
    0% {
        font-size: 12px;
        opacity: 0;
    }
}

@keyframes loadCanvas {
    0% {
        /* padding: 100em; */
        /* top:15em; */
    }
    100% {
        top: 0;
    }

}

