body {
    width: 100%;
    height: 100%;
    background-color: darkolivegreen;
    position: relative;
    display: flex;
    justify-content: center;
    font-family: Arial;
}

.title {
    font-family: Roboto, Arial;
    color: darkolivegreen;
}

.input {
    margin-top: 8px;
    padding: 5px;
}

.card {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
    padding: 10px;
    width: 25%;
    justify-content: center;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;

}

.inputs {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.result {
    border: none;
    outline: none;
}

.result:focus {
    border: none;
    outline: none;
}

.inputText {
    font-weight: bold;
    margin-top: 8px;
    color:darkolivegreen;
}

.buttons {
    margin-top: 8px;
}

.button {
    background-color: darkolivegreen;
    border-radius: 3px;
    padding: 7px;
    border: none;
    color: white;
    font-size: 15px;
}

.result {
    font-size: 21px;
    margin-top: 10px;
    color:blue;
    font-width: bold;
}

.cover{
    width: 70%;
    text-align: center;
}

.linkToCode{
    color:red;
    font-weight: bold;
}