@font-face {
    font-family: 'CustomFont';
    src: url("/assets/font/Minercraftory.ttf") format('truetype');
}

*{
    font-family: 'CustomFont', sans-serif;
    color: #fffe9aff;
    text-shadow: rgba(160, 159, 108, 0.29) 3px 3px 0px;
    text-decoration: none;
    font-weight: lighter;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 1.1em;
}

h1{
    font-size: 3em;
    text-align: center;
    margin-top: 20px;
}

h2{
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
}

body{
    border: 10px solid #fffe9aff;
    margin: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, #ff6b43ff, #fea956ff);
}

header{
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-between;
    background: fixed url("/assets/images/Chase_the_Skies_key_art_background.jpg") no-repeat center bottom / cover;
    border-bottom: 10px solid #fffe9aff;
}

#ghast{
    width: 50%;
    margin: 10px;
    animation: floatIdle 3s ease-in-out infinite alternate;
    }

    @keyframes floatIdle {
        0% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(-10px);
        }
}

#minecraft-logo{
    width: 40%;
    margin: 40px;
}

#serious{
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    color:  rgb(132, 43, 159);
    text-shadow: rgba(152, 40, 135, 0.803) 3px 3px 10px;
    text-transform: uppercase;
}

section{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section p{
    text-align: center;
    margin: 10px 0;
    font-size: 1.2em;
}

#heart{
    width: 100px;
    margin: 10px;
}

#signature{
 font-size: 2.2em;
}

.button {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    border: 3px solid #bdbdbd;
    border-radius: 6px;
    padding: 12px 28px;
    font-family: 'CustomFont', sans-serif;
    font-size: 1.1em;
    text-shadow: none;
    box-shadow: 2px 2px 0 #bdbdbd, 4px 4px 0 #bdbdbd;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
    font-weight: bold;
    letter-spacing: 1px;
}

.button:hover, .button:focus {
    background: #f5f5f5;
    color: #222;
    box-shadow: 1px 1px 0 #bdbdbd, 2px 2px 0 #bdbdbd;
}

#post-scriptum {
    margin-top: 40px;
}

@media (max-width: 600px) {
    body {
        border-width: 5px;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    header {
        padding: 10px 0;
        border-bottom-width: 5px;
    }

    #ghast,
    #minecraft-logo {
        width: 90%;
        margin: 10px 0;
    }

    h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.3em;
        margin-top: 10px;
    }

    #serious {
        font-size: 1.2em;
        margin-top: 10px;
    }

    section {
        padding: 10px 5px;
    }

    #heart {
        width: 50%x;
        margin: 5px;
    }

    .button {
        padding: 10px 16px;
        font-size: 1em;
    }
}