* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div.header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dae1e8;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: sticky;
    top: 0;
    left: 0;
}

div.header>a {
    text-decoration: none;
    /* color: white; */
}

div.main_section {
    /* border: 2px solid black; */
    width: 100%;
    min-height: calc(100vh - 120px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

div.main_section > .main_desc {
    font-size: 1.1rem;
    padding: 5px 10px;
}

h2.title {
    font-size: 1.5rem;
    background-color: grey;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.section h3.heading {
    background-color: #dae1e8;
    padding: 5px;
    border-radius: 5px;
    font-size: 1.4rem;
}

.section > .description{
    padding: 0px 10px;
}

.section > .link_container{
    padding: 0px 10px;
}

.section > .link_container > .btn{
    padding: 5px;
    background-color: aqua;
    text-decoration: none;
    /* color: white; */
    font-weight: bold;
    border-radius: 5px;
}

.features{
    padding: 5px;
}

.features > .heading{

}

.features > .features_list{
    padding: 5px 10px 10px 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}



.footer_container {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 80px; */
    border-top: 1px solid white;
    background-color: #dae1e8;
    /* position: absolute;
    bottom: 0;
    left: 0; */
}

.footer_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    /* gap: 20px; */
    max-width: 1000px;
    /* border: 2px solid red; */
    /* align-items: flex-start; */
}

p.footer_section {
    text-align: center;
}

.footer_section>span.logo_txt {
    font-weight: bold;
    background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.footer_section>span.thank_txt>i {
    color: red;
}

.footer_section>span.thank_txt>span.name {
    color: red;
}