* {

}

html {
    position: relative;
    min-height: 100%;
}

h1 {
    font-size: 3rem;
    margin: auto;
}

.header-right {
    text-align: center;
}

header {
    border-bottom: 3px solid black;
    margin-bottom: 1rem;
}

.wrapper {

}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.feature-list {
    background-color: #f4f4f4;
    border: 2px solid #545252;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-list h2 {
    color: #1a1a1e;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
}

.feature-list ul {
    list-style-type: none;
    padding: 0;
}

.feature-list ul li {
    /*background-color: #ecedf1;*/
    background-color: #fff;
    border: 1px solid #5a5f60;
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1e;
    font-weight:bold;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /*height: 60px; !* Set the fixed height of the footer here *!*/
    line-height: 30px; /* Vertically center the text there */
    background-color: #1a1a1e;
    color: white;
}

.footer a {
    color:white;
}

/*// X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    h1 {
        font-size: 1rem;
    }
}

/*// Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
}

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}

/*// X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}

/*// XX-Large devices (larger desktops)*/
/*// No media query since the xxl breakpoint has no upper bound on its width*/
