@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fefefe;
}

.buttons > * {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

.buttons > * button, .nextStepButton {
    margin: 3px;
    background-color: #00769a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #005d79;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.buttons > * button:hover, .nextStepButton:hover {
    background-color: #005d79;
    border-color: #00769a;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.buttons > * button:active, .nextStepButton:active {
    transform: translateY(0);
}

.nextStepButton {
    display: block;
    margin: 0 auto;
}

.footer {
    text-align: center;
}

.footer a {
    text-decoration: none;
    background-color: #00769a;
    color: white;
    padding: 5px;
    border-radius: 10px;
}

.algorithmSteps > * {
    display: block;
    margin-right: 10%;
    margin-left: 10%;
    background-color: #00769a;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
    margin-top: 10px;
}