* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    font-size: 1rem;
}

body {
    background-color: #1a1a1a;
    max-width: 100vw;
}

.container {
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5vh 0;
}

.box {
    width: 90%;
}

.space {
    border-style: none;
    height: 5vh;
    max-height: 60px;
}

.button {
    width: 8vh;
    height: 8vh;
    border-radius: 100%;
    border-style: none;
}

.icon, .img {
    width: 100%;
}

.img {
    border-radius: 5px;
}

.header, .title {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.header {
    font-size: 1.8rem;
}

.title {
    font-size: 3.2rem;
    color: #d40000;
}

.text {
    line-height: 1.5;
}

.footer {
    text-align: center;
    background-color: #d4000083;
    padding: 2vh 0;
}

.footer .text, .link-footer {
    font-size: 0.7rem;
}

.link-footer:hover, .link-footer:active {
    color: #d40000;
    font-weight: 600;
}

.red {
    color: #d40000;
}

.padding {
    padding: 6% 0;
}

.transition {
    transition: ease-in-out all .2s;
}
