@import url(reset.css);

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #101313;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main {
    background-color: #222222;
    border: #fff solid;
    border-radius: 13px;
    color: #fff;
    padding: 30px;
    /* width: 86%; */
    width: 43vh;
    height: 40vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

input {
    background-color: #444444;
    border-radius: 5px;
    border: none;
    color: #fff;
    padding: 5px;
    text-align: center;
}

button {
    background-color: #2a9f96;
    border-radius: 7px;
    border: none;
    color: #fff;
    padding: 5px;
    width: 150px;
    transition: transform 0.15s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    background-color: #1f6660;
    transform: scale(0.95);
}

h1 {
    font-size: x-large;
}

.time {
    display: flex;
    align-items: center;
}