html, body {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    height: 100%;
    background-color: #efe6f0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

section {
    flex: 1;
}

footer {
    flex-shrink: 0;
}

.result {
    margin: 15px 0 0;
    color: brown;
}

.micro-button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.micro-button:hover {
    background: transparent;
    background-color: rgb(240, 246, 240);
    border-radius: 50px;
}

.container-1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
}

.subcontainer-2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.subcontainer-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#chart-container {
    margin: 0 0 0 30px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}

*::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #555;
}

* {
    scrollbar-width: thin;
}

*::-moz-scrollbar {
    width: 5px;
    background: #f1f1f1;
}

*::-moz-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

*::-moz-scrollbar-thumb:hover {
    background: #555;
}

.title {
    text-align: center;
    font-size: 26px;
    margin: 20px 10px 30px;
}

.title-1 {
    text-align: center;
    font-size: 26px;
    margin: 10px;
}

.form {
    max-width: 400px;
    width: 100%;
}

.form-1 {
    margin: 0 0 50px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
}

.small-text {
    font-size: 20px;
    margin: 0 0 0 4px;
}

.input-field {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #2f2e2e;
}

.input-field:focus {
    outline: none;
    border-color: #6969bd;
    box-shadow: 0 0 5px #6969bd;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.blue {
    background-color: #c2d9f3;
    color: black;
}

.red {
    background-color: #dab5b5;
    color: black;
}

.btn:hover {
    opacity: 0.8;
}

.contact-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-section a {
    margin: 0 20px;
    text-align: center;
    text-decoration: none;
    color: #0000EE;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0 10px;
    text-align: center;
}

.footer-text {
    margin: 0 0 20px;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-item {
    margin: 0 10px 10px;
}

.footer-item a {
    color: #fff;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 645px) {
    #chart-container {
        margin: 30px 0 0;
    }

    .contact-section {
        margin: 30px 0 0;
    }
}