@import url("fonts/army/index.css");

body {
    background-color: #201e21;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    min-height: calc(100vh - (60px));
}

.home-content {
    padding: 0 8px;
    flex: 1;
}

h1 {
    color: #fdce2a;
    text-align: center;
    font-family: "army-bold";
    font-size: 36px;
}

.home p {
    color: #fff;
    text-align: center;
    max-width: 575px;
    font-family: "army-light";
    font-size: 18px;
}

.home p.highlight {
    font-family: "army-regular";
    color: #fcd754;
    font-size: 24px;
}

.footer {
    font-size: 14px;
    color: rgb(205, 205, 205);
    text-align: center;
    font-family: "army-light";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
}

.footer h4 {
    margin: 0;
}

.footer a {
    color: #fcd754;
    border: 0;
    text-decoration: none;
    font-family: "army-bold";
    border-radius: 15px;
    padding: 8px 16px;
    margin: 8px;
    transition: all 1s;
}

.footer a:hover {
    background-color: #434243;
    transition: all .4s;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons a {
    min-height: 48px;
    display: flex;
    align-items: center;
}

a {
    border: 4px solid #fdce2a;
    border-radius: 15px;
    padding: 8px 16px;
    margin: 8px;
    transition: all 1s;
}

a:hover {
    background-color: #434243;
    transition: all .4s;
}

.content {
    width: 80%;
    margin: 24px auto;
    display: block;
    color: #fff;
    font-family: "army-light";
}

.content h4 {
    font-size: 14px;
    color: rgb(205, 205, 205);
    text-align: center;
    font-family: "army-light";
}

@media (min-width: 37.5625em) {
    .home {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px;
        min-height: calc(100vh - (100px));
    }
    .footer {
        flex-direction: row;
    }
}