:root {
    --dark-grey: #696969;
    --orange: #f39200;
    --blue: #00a9ce;
}
  
body, html {
    height: 100%;
    margin: 0;
    font-family: "Open Sans", Verdana, Geneva, Tahoma, sans-serif;
    color: var(--dark-grey);
}

.logo {
    position: absolute;
    top: 0;
    left: 1rem;
    margin: 1rem;
}

.flex-container {
    position: absolute;
    top: 10%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-item {
    flex: 50%;
    text-align: center;
    font-size: x-large;
}
  
@media screen and (max-width: 600px) {
    .flex-container {
        flex-direction: column;
    }
    .flex-item {
        width: 100%;
    }
}

#counter {
    color: var(--orange);
    font-size: x-large;
}
        
hr {
    margin: auto;
    width: 40%;
}

a {
    color: var(--blue);
}
  
a:link {
    text-decoration: none;
}

a:hover {
    color: var(--orange);
}