@import url('https://fonts.googleapis.com/css?family=Kanit:200,400&display=swap');

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 200;
    font-family: 'Kanit';

    color: #ebebeb;
    background: #333;
}

a,
a:active,
a:visited {
    color: cornflowerblue;
    text-decoration: none;
}

body,
header,
main,
footer {
    margin: 0;
    width: 100%;
}

.header-content,
.main-content,
.footer-content {
    margin: 0 auto;
    text-align: center;
}

.content {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.strat-container {
    background: #222;
    position: relative;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    padding: 15px;
    border-radius: 25px;
}

.strat-content {
    min-width: 40ch;
    max-width: 75ch;
    margin: 0 auto;
    padding: 0 40px;
}

#race {
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 20px;
}

#strat-title {
    font-weight: 400;
    font-size: 24px;
}

#strat-desc {
    margin: 20px 0;
}

#getstrat {
    margin: 20px 0;
    border: none;
    color: white;
    padding: 15px 32px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #444;
    transition: 100ms;
}

#getstrat:hover {
    transform: scale(1.1);
}

#getstrat:active {
    background-color: red;
}

.UEF {
    color: blue;
}

.Cybran {
    color: red;
}

.Aeon {
    color: green;
}

.Seraphim {
    color: yellow;
}

.subtext {
    font-size: 12px;
}