@import url('inline-font1_1.900&display=swap');
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #000000;
}

header {
    text-align: center;
    padding: 11px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1b1e24;
}

article {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
    color: #fff;
}

article img {
    max-width: 100%;
    height: auto;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 2px #000;
    color: #6fa4a7;
    margin: 2em auto;
    font-size: 1.5em;
}

footer {
    background: linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: solid 2px rgb(23, 89, 104);
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: small;
}

.buttons {
    margin: 10%;
    text-align: center;
}

.btn-hover {
    width: 300px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px 30px 20px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-9 {
    background-image: linear-gradient(to bottom, #3d997f, #28a1a1, #2a554f, #000000);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    color: #fff;
    font-size: none;
    font-weight: 700;
    text-transform: uppercase;
    width: 250px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

table th,
table td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

table th {
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
}

table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

table tr:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

blockquote {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 5px solid #555;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
}

li {
    margin-bottom: 10px;
}

p {
    line-height: 1.5;
}