:root {
    --primarycolor: #092738;
    --secondarycolor: #324f5f;
    --semisecondarycolor: #17c2a2;
    --white: #ffffff;
}
.mainbody {
    background-color: var(--primarycolor)
}

.formcontainer {
    background-color: white;
    width: 40%;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
}

.imagelogo {
    height: 40px;
    width: 40px;
}

.iplugname {
    font-size: 35px;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.wrapheader {
    display: flex;
}

.amountform {
    margin-top: 10px;
}
.submitbutton{
    background-color: var(--semisecondarycolor);
    color: var(--primarycolor);
    margin-top: 10px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-weight: 700;
}
.wrapname{
    padding: 10px;
    border: 1px solid silver;
    cursor: pointer;
    margin: 5px 0px;
}


@media only screen and (max-width : 780px) {
    .iplugname{
        font-size: 25px;
    }

    .ipaylogo {
        width: 50%;
    }

    .formcontainer {
        background-color: white;
        width: 80%;
        margin: auto;
        padding: 20px;
        border-radius: 5px;
    }
}