@import "css-reset.css";
@import "settings.css";
@import "fonts.css";

body {
  background-color: var(--bg-color);
  color: var(--font-color);
  font-family: 'Inter', sans-serif;
  height: 100vh;
}

svg>path {
  fill: var(--font-color);
}

.site {
    /* max-width: 1080px; */
    margin: auto;
}

.main {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin: auto;
    max-width: var(--site-width);
}

.header {
    background-color: var(--bg-color);
    padding: 20px 10px;
}

.branding > img {
    width: 100px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--site-width);
    margin: auto;
}

.section-timer {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    padding: 40px 20px;
    width: 100%;
    max-width:  var(--site-width);
    text-align: center;
}

.section-timer > h3 {
    min-height: 36px;
    height: 36px;
}

.timer {
    font-size: 120px;
    max-height: 614px;
}

.clock {
    font-size: 64px;
}

video {
    width: 75%;
    height: auto;
}

.timer-start {
    font-size: 36px;
}