* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color:purple;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}   

.container h1 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 20px;
}

.cap-container, .val-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: row;
}

input {
    width: 80%;
    height: 50px;
    font-size: 1.5rem;
    text-align: center;
    border: none;
    background-color: #333;
    color: white;
    margin: 0 10px;
}  

button {
    width: 100px;
    height: 50px;
    font-size: 1.5rem;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
}

p {
    font-size: 1.5rem;
    margin-top: 20px;
}