@font-face {
  font-family: sevenSegment;
  src: url("Seven Segment.ttf");
}

body {
    background-color: black;
    font-family: sevenSegment, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3em;
    font-weight: 900;
    color: #ff0000;
}

#menus {
    position:absolute;
    display: flex;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: stretch;
}

#fullscreen {
    cursor: pointer;
    padding: 0.25em;
}

#fullscreen:hover{
	color: #6d0000;

}

#sidenav {
    cursor: pointer;
    margin: 0.25em;
}

#container {
    position: relative;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
}

#time {
    position: relative;
    text-align: center;
    margin-top: 2em;
}

#controls {
    display: flex;
    flex-direction: row;
    gap: 0.3em;
    cursor: pointer;
}

#presets {
    display: flex;
    flex-direction: column;
    margin-top: 1.5em;
    cursor: pointer;
}