* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    min-height: 8vh;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    position: fixed;
    min-width: 100%;
    
    padding-left: 20px;
    background-color: rgb(109, 116, 121);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
main {
    display: flex;
    flex-direction: column;
    font-family: "Saira Stencil", sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 92vh;
    overflow: hidden;
}
body {
        background-color: rgb(240, 240, 240);
}
#message {
    font-size: 24px;
    font-family: "Saira Stencil", sans-serif;
    color: white;
}
#display {
    display: flex;
    position: relative;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    flex-direction: row;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;

}
#display a {
    text-decoration: none;
    color: rgb(0, 183, 255);
    border-radius: 5px;
}

#display a:active {
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
}
#dividor {
    display: inline-flex;
    background-color: rgb(0, 0, 0);
    min-width: 5px;
    width: .6vh;
    max-width: 5px;
    margin: 5px;
    height: 3.7vh;
}
