@font-face {
    src: url("../fonts/Satans Minions.ttf");
    font-family: "Satans Minions";
}

body {
    background: rgb(121, 10, 6);
    background:
            url("Background.png") no-repeat center fixed,
            url("Background-Low-Res.png") no-repeat center fixed;
    background-size: cover;

    text-align: center;

    overflow: hidden;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
}

header {
    position: relative;
    width: 100%;
    flex-grow: 1;

    & > * {
        position: absolute;
        left: 0;
        width: 100%;
        transform: translateY(30%);
    }

    & > div {
        height: 150px;
        background: url("Shadow.png") no-repeat center;
        background-size: contain;
    }

    & > span {
        font-family: "Satans Minions", serif;
        font-size: 150px;

        &:first-of-type {
            -webkit-text-stroke: 0.5vh #f87d1a;
            color: black;
            text-shadow: 0.8vh 0.5vh #681203;
            user-select: none;
        }

        &:last-of-type {
            background: linear-gradient(#a35616, #000000);
            background-clip: text;
            color: transparent;
        }
    }
}

.content {
    width: 100%;
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: center;

    & > .container {
        width: 810px;
        background: rgb(28, 19, 8);

        padding: 5px 20px;
        border-radius: 10px;
        border: 5px solid rgba(248, 125, 26, 0.5);
        box-shadow: 0 5px 30px 20px rgba(0, 0, 0, 0.75);

        color: white;
        font-size: 20px;
        font-family: "Segoe UI", serif;
        text-align: left;
    }
}

img {
    float: right;
    width: 128px;
    margin-top: 5px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;

    &:hover {
        text-decoration: underline;
    }
}

.description {
    font-size: smaller;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px;

    & button {
        padding: 5px 10px;

        font-size: 30px;
        font-family: "Satans Minions", serif;
        color: white;

        background: linear-gradient(#a58163, #402112);
        border: 3px outset #c38f5a;

        & > span {
            margin-right: 10px;
            padding-right: 10px;
            border-right: 1px solid lightgray;
            font-family: FontAwesome, serif;
        }

        &:hover {
            cursor: pointer;
            filter: brightness(120%);
        }
    }
}

.icon-download:before { content: "\f019";}
.icon-feedback:before { content: "\f4ad";}

footer {
    position: absolute;
    width: calc(100% - 20px);
    bottom: 0;
    padding: 10px;
    line-height: 70px;

    & > .footer-background {
        position: absolute;
        z-index: -1;
        background: url("Shadow.png") no-repeat center;
        background-size: 100% 100%;

        bottom: 0;
        right: -300px;
        width: 700px;
        height: 100px;
    }

    & > * { float: right; }

    & > span {
        color: white;
        font-family: "Satans Minions", serif;
        font-size: 30px;
        margin-top: 10px;
    }

    & > a {
        margin-left: 20px;

        & > .logo {
            background-image: url("../SmitE Logo.png");
            background-size: cover;
            border: 0.05em solid #363636;

            width: 80px;
            height: 80px;

            &:hover {
                box-shadow: 0 0 5px white;
            }
            &:active {
                outline: 1px solid white;
                box-shadow: 0 0 10px white;
            }
        }
    }
}
