@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pixelify Sans", sans-serif;
}

body {
    min-height: 100vh;
    background-image: url('../../../img/background/background-history.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    background-color: rgba(0, 0, 0, 0.938);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container > .box-cell {
    color: white;
    width: 1200px;
}

.container > .box-cell > p {
    text-align: justify;
    text-indent: 2em;
    margin: 10px 0 0 0;
    font-size: 1.5em;
}

.container > .box-cell > h1 {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 2.2em;
}

.container > a {
    width: 150px;
    height: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.8em;
    color: black;
    border-radius: 30px;
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%);
}