* {
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    color: rgb(255, 251, 165);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    font-weight: 700;
}

body {
    background-image: url('background.png');
    align-self: center;
    background-size: 640px 360px;
    background-repeat: repeat;
    background: linear-gradient(to right, #000000, #323232, #3b3b3b, #323232, #000000);
}

.aligned {
    float: left;
    width: 20%;
    text-align: center;
    vertical-align:middle;
    height: 100%;
    font-size: auto;
}

.aligned2 {
    float: left;
    width: 60%;
    text-align: center;
    vertical-align:middle;
    height: 100%;
    font-size: 1.35vw;
}

.column {
    align-items: center;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

@media screen and (max-aspect-ratio: 12/10) {
    .column {
        display: none;
    }
    .aligned {
        width: 5%;
    }

    .aligned2 {
        width: 90%;
        font-size: 2.25vh;
    }
  };


h1 {
    font-size: 2vi;
    text-align: center;
}

.gradient {
    background: linear-gradient(to right, #f9ea4c, #ffffff, #faeb36, #fbbf4f);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.eviltext{
    background: linear-gradient(to right, #a23b3b, #ff0000, #a23b3b);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-shadow: 0px 0px 10px #cc0202;
}

.centered{
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
    width: 100%;
    height: auto;
}​