@font-face { font-family: Quicksand; src: url('fonts/Quicksand-SemiBold.ttf'); } 

div.container {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    overflow: auto;
}

.question {
    font-size: calc(24px + 4vh);
    text-align: center;
    font-family: Quicksand, Cambria;
    color: lightgrey;
}

img.start {
    background: transparent;
    width: calc(24px + 16vh);
    cursor: pointer;
}

h2.counter {
    font-size: calc(24px + 4vh);
    text-align: center;
    color: lightgrey;
    font-family: Quicksand, Cambria;
}


body {
    background-color: #001B3A;
    margin: 0;
    padding: 0;
    border: 0;
    background-image: url('./images/background.png');
    background-size: cover;  /* This will cover the entire viewport of the element */
    background-repeat: no-repeat;  /* This prevents the image from repeating */
    background-position: center;  /* This centers the image */
    
}

