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

.screen_bleed_container{
    /* padding: 10px; */
}

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; */
}

.sections_container{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: calc(100vh - 120px);
}

.section{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.section h3.heading {
    background-color: #dae1e8;
    padding: 5px;
    border-radius: 5px;
    font-size: 1.4rem;
}
.section p {
    padding: 0 5px;
}
.section > .usage_instruction {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 25px;
}

.section > img{
    margin-left: 20px;
    width: 320px;
}

.sections_container > button{
    width: max-content;
    padding: 5px 10px;
    background-color: aqua;
    text-decoration: none;
    /* color: white; */
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
}
.sections_container > button:hover{
    cursor: pointer;
}

.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;
}

@media screen and (max-width: 480px) {
    .section > img{
        margin-left: 10px;
        width: 160px;
    }
}