* {
    margin: 0;
    overflow-x: hidden;
}

header {
    padding-left: 6%;
    width: 100%;
    min-height: 11vh;
    background: rgb(3, 3, 87);
    display: flex;
    align-items: center;
}

#headerA {
    text-decoration: none;
    font-size: 3em;
    color: whitesmoke;
}

header a:hover {
    color: rgb(179, 174, 174);
}

#info {
    display: flex;
    justify-content: center;
    align-items: center;
}

#calid {
    font-weight: 700;
    text-transform: capitalize;
}

#display {
    min-height: 30vh;
    max-height: 31vh;
    min-width: 100vw;
    background-color: rgb(231, 229, 229);
    display: flex;
    flex-direction: column;
    justify-content:flex-end;
    align-items:flex-end;
}

#displays,
#totals {
    display: flex;
    min-width: 90%;
    width: 100%;
    font-size: 3em;
    align-items:self-end;
    justify-content: end;
}

#buttcon {
    min-width: 100vw;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}


#buttcon div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#calbtn,
#submit {
    cursor: pointer;
    width: 25vw;
    height: 9vh;
    /* background:rgb(153, 152, 152); */
    background-color: rgb(42, 42, 128);
    transition: 1s ease-out;
    color: white;
    font-size: 2em;
    border-color: rgb(148, 148, 197);
}
#calbtn:hover {
    background-color: rgb(13, 13, 68);
}

.smb {
    background-color: rgb(216, 141, 3) !important;
}
.smb:hover {
    background-color: rgb(126, 83, 3) !important;
}

#submit {
    background-color: rgb(1, 63, 1);
}
#submit:hover {
    background-color: rgb(2, 24, 2);
}

.blc {
    cursor: pointer;
    min-width: 25%;
    max-width: 25%;
    height: 9vh;
    background-color: rgb(216, 141, 3);
    transition: 1s ease-in-out;
    font-size: 2em;
    color: white;
    border: none;
}
.blc:hover {
    background-color: rgb(126, 83, 3);
}

.blc2 {
    cursor: pointer;
    min-width: 25%;
    max-width: 25%;
    height: 9vh;
    background-color: rgb(216, 141, 3) !important;
    transition: 1s ease-in-out;
    font-size: 2em;
    color: white;
    border: none;
}
.blc2:hover {
    background-color: rgb(126, 83, 3) !important;
}

#clear {
    min-width: 33.3%;
    max-width: 33.3;
    height: 9vh;
    background-color: rgb(241, 60, 60);
    border: none;
    transition: 1s ease-in-out;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

