/* Start Main Rules */
body {
    background-color: #000000;
    color: #ffcc5c;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
h1 {
    font-family: "Aclonica", sans-serif;
    font-family: "Courier New", Courier, monospace;
    font-size: 45px;
}
.description {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.rocket {
    font-size: 100px;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-btn {
    width: 45%;
    max-width: 160px;
    color: #fff;
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
}
.app-btn.blu {
    background-color: #101010;
    transition: background-color 0.25s linear;
}
.app-btn.blu:hover {
    background-color: #454545;
}
.app-btn svg {
    width: 20%;
    text-align: center;
    font-size: 28px;
    margin-right: 7px;
}
.app-btn .big-txt {
    font-size: 17px;
    text-transform: capitalize;
}
