 *{
            font-size: 14px;
        }
html {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #FFF;
}

body {
    font-family: Arial;
    background-color: #fff;
    padding: 0;
    text-align: center;
    box-shadow: 0px 0px 10px #aeaeae;
    width: 400px;
    height: 750px;
    margin: 0px !important;
    font-family: arial !important;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
}

header img {
    width: 100%;
    max-width: 240px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    margin: 0px;
    position: sticky;
    padding: 0;
    margin: 0;
    bottom: 0;
    width: 400px;
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    height: 60px;
    box-shadow: 0px -2px 10px #d3d2d2;

}

.footerbutton {
    background-color: transparent;
    color: white;
    text-align: center;
    margin: 0px;
    position: fixed;
    padding: 0;
    margin: 0;
    bottom: 80px;
    right: 10px;

}

.footerbutton a {
    border-radius: 50%;
    padding: 12px 16px;
    color: #FFF;
    border: 0px solid #000;
    background: #07239b;
    box-shadow: 0px 2px 5px 2px #d3d2d2;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: font-size .5s;
}

.footerbutton a:hover {
    font-size: 14px;
    font-weight: bold;
}

.fbutton {
    text-decoration: none !important;
    padding: 0px;
    border: 1px solid #000;
    background-color: #FFF;
    color: #034e7e;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    transition: background-color 0.5s;
}

.fbutton:hover {
    background-color: #f4f8fc;
}

.fbuttonimg {
    width: 25px;
    margin-bottom: 5px;
    transition: transform 0.5s;
}

.fbuttonimg:hover {
    transform: scale(1.5);
}

@media only screen and (max-width: 500px) {
    html {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: linear-gradient(to bottom, #cddae0, #FFF)no-repeat;


    }

    body {
        font-family: Arial;
        background-color: #fff;
        margin: 0;
        padding: 0;
        text-align: center;
        box-shadow: none;
        margin: 0px;
        width: 100%;
        height: 100vh;
    }

    footer {
        position: fixed;
        width: 100%;
    }
}