html {
    height: 100%;
    background-color: var(--secondary-color);
}

* {
    font-family: 'Arial';
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    /* color: var(--main-color); */
    transition: color 0.2s; 
    transition: background-color 0.2s linear; 
}

:root {
    --main-color: red;
    --secondary-color: white;
}

#header {
    padding: 0px;
    margin: 0px;
    border: 0px;
    bottom: 0px;
    position: fixed;
    background-color: var(--main-color);
    display: flex;
    align-items: stretch;
    width: 100%;  
} 

.header-buttons {  
    height: 100%;
    position: relative;
    font-size: 100%; 
    border-color: var(--main-color);
    display: flex;
    flex: 1; 
    flex-direction: row;
    justify-content: center;
    align-self: center; 
    padding: 1.3%; 

    scroll-margin: 0;  
    text-decoration: none;
    color: var(--secondary-color);
    

}

#light-switch {
    border: 0px;
    display: flex;
    background-color: var(--main-color);
}

a {     
    transition: flex 0.5s; 
}
a:hover {
     
    flex-grow: 1.1; 
    color: var(--main-color);
    background-color: var(--secondary-color); 
    transition: flex 0.5s; 
}

#bigshot {    
}

#bigshot:hover {
    flex-grow: 1.1;  
    transition: flex 0.5s; 
}


.banner {
    background-color: var(--main-color);
    height: 1000px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.banner div {
    padding-top: 50px;
    padding-right: 40px;
    /* display: flex; */
    flex-direction: column;
    align-self: center;
    justify-self: center;
    color: var(--secondary-color); 
    /* height: 20%; */
    margin: 0 auto;
     
}

.banner div div {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-self: center;
}

#title {
    font-size: 5em;
    color: white;
    padding-top: 5rem;
    
}

#subtitle {
    font-size: 3.5em;
    color: white;
}

#projects {
    margin-top: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
}

#countdown {
    display: flex;
    flex-direction: row;
}

#countdown p {
    background-color: transparent;
    color: white;
    border: 0px;
    font-size: 120px;
    margin: 0;
    padding-bottom: 0.3em;
    height: 120px;
    width: 40px; 
}
 
#buttons {
    padding-top: 1rem;
    padding-left: 55px;
    display: flex; 
    flex-direction: row; 
}
#buttons button{ 
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* text-align: center; */
    vertical-align: middle;
    /* height: 70px; */
    height: 100%;
    width: 120px;  
    font-size: 25px; 
    border: 0; 
    flex: 1; 
    align-self: center; 
    padding: 9%; 
    background-color: var(--main-color);
    border-radius: 6%;
    color: var(--secondary-color);
}

#buttons button:hover { 
    /* flex-grow: 1.1;   */
    background-color: var(--secondary-color); 
    color: var(--main-color);
    transition: flex 0.5s;
    --pause-color: var(--main-color);
}

.time {
    display: inline-flex;
    align-self: center;
    justify-content: center;
    background-color: transparent;
    text-align: end;

    color: white;
    opacity: 0.9;
    border: none;
    font-size: 120px;
    height: 120px;
    width: 150px;
    outline:0;
} 
.time::placeholder {
    /* text-align: end; */
    color: white;
} 
.time:first-child {
    width: 220px;
} 

i {
    color: var(--pause-color);

    /* color: white; */
    padding-right: 5px;
    padding-left: 0px;
}
 

#sidebar {
    position: absolute;
    right: 0px;
    /* width: 30%; */
    height: 100%;
    background-color: white;
    transition: right 1s ease;    


}

.show  {
    width: 30%;
    /* transition: 1s ease;     */
}
.show::after  {
    width: 0%;
    /* transition: 1s ease;      */
}