body{
    background: grey;
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

header {
    height: 100px;
    display: block;
    margin-bottom: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

img {
    border-radius: 10px;
}

.logo {
    margin-top: 10px;
    height: 110px;
    display: block;
    margin-bottom: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: 10px;
}

h1 {
    color: honeydew;
    font-size: 50px;
    padding-top: 50px;
    text-align: center;
    font-family: 'Bangers'; 
}

h2 {
    font-size: 50px;
    color: honeydew;
    text-align: center;
    font-family: 'Bangers';
}
#equal {
    box-sizing: border-box;
}
.card {
    height: auto;
    width: 75%;
    display: block;
    margin-bottom: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(212, 212, 212);
    border-radius: 10px;
}

.card-section {
    text-align: center;
}

.card-head {
    font-weight: bold;
    font-size: 25px;
}

.button {
    font-family: 'Bangers';
    border-radius: 10px;
}

.btn {
    background-color: darkslateblue;
    border-radius: 10px;
}

.save {
    display: block;
    margin-bottom: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-color: darkslateblue;
}

.redo-button {
    display: block;
    margin-bottom: 50px;
    margin-top: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    font-size: 30px;
}

.center {
    top: 50%;
    -ms-transform: translateY(-100%);
    transform: translateY(0%);
    margin-top: 75px;
    width: 75%;
}

.dropdown-pane {
    background-color: rgb(212, 212, 212);
    width: 37.5%;
    border-radius: 10px;
}
.redo {
    width: 100%;
    background-color: darkslateblue; 
    border: rgb(212, 212, 212);
    border-width: 1px;
    border-style: solid;
    margin-bottom: 1px;
}

.history {
    text-align: center;
    font-size: 50px;
    color: honeydew;
    font-family: 'Just Another Hand', cursive;
    padding-top: 0;
}

.container {
    position: relative;
    min-height: 100vh;
}

.bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center; 
    margin-bottom: 0;
}

@media screen and (max-width: 639px)  {
    .dropdown-pane {
        width: 75%;
    }

    .center {
        margin-top: 20px;
    }
}



