﻿@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body 
{
    font-family: Roboto Condensed;
    font-size: 22px;
}

summary 
{
    font-size: 32px;
    font-weight: 500;
}

button, input 
{
    font-size: 21.2px;
    height: 30px;
    box-sizing: border-box;
    vertical-align: middle;
    background-color: #FFB78D;
}

hr 
{
    border-top: 2px solid #000000;
}
/*--------------------------------------------*/
#switch-background 
{
    width: 32px;
    height: 32px;
    margin: 0px 16px;
    background-size: 32px 32px;
}

.dark 
{
    color: #C8C8C8;
    background-color: #323232;
    background-attachment: fixed;
}

.dark #switch-background 
{
    background-image: url("img/sun.png");
    filter: brightness(0) invert(1);
}

.dark button, .dark input 
{
    background-color: #ffffff;
}

.white 
{
    color: black;
    background-color: #FED6BC;
    background-attachment: fixed;
}

.white #switch-background 
{
    background-image: url("img/moon.png");
}

#header 
{
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

#switch-background /*> img*/ 
{
    width: 32px;
    height: 32px;
}
/*--------------------------------------------*/
#photo-and-color 
{
    display: flex;
    justify-content: space-between;
}

#photo-container 
{
    border: solid 1px;
    width: 400px;
    height: 400px;
}

#photo 
{
    width: 400px;
    height: 400px;
}
/*--------------------------------------------*/
#display 
{
    border: solid 1px;
    margin: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

.time-block 
{
    border: solid 3px;
    border-radius: 4px;
    width: 148px;
    box-shadow: 0px 0px 25px 5px #E48148;
}

.time-unit 
{
    font-size: 48px;
    color: #000000;
    height: 148px;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-marker 
{
    border: solid 1px;
    background-color: #FFB78D;
    color: #000000;
    text-align: center;
}