@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
input[type=date], [type=datetime-local]{
    width: 200px;
    padding: 12px;
    margin: 10px 0px;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid salmon;
    box-sizing: border-box;
    font-size: 16px;
}

nav{
    margin: 1%;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 10px;
    text-align: center;
    background-color: #F0F8FF;

}
nav a{
    font-variant: small-caps;
    letter-spacing: 0.1cm;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    padding: 10px;
    border-right: 2pt solid #cc7a1a;
    border-left: 2pt solid #cc7a1a;
    transition-duration: 0.5s;
}
nav ul a:hover{
    border-right: 2pt solid #F0FFFF;
    border-left: 2pt solid #F0FFFF;
    border-bottom: 2pt solid #cc7a1a;
}
a:active, a:visited, a:link{
    color:#331f66;
    font-size:12pt;
    font-family: 'Rubik', sans-serif;
}
div{
    font-size: 20px;
}

body{
    color: #190f73;
    background-color: #F0FFFF;
}
html{
    background-color: #F0FFFF;
    width: 100%;
    height: 100%;
}
h1{
    font-family: 'Courier New', monospace;
    margin-left: 40%;
}
label{
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
}
input[type=button]{
    display: inline-block;
    background-color: #7b38d8;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 16px;
    padding: 20px;
    width: 100px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
.ftimer{
    background-color: rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 400px;
    align-items: center;
    justify-content: center;
}
.ftimer > div > div{
    display: flex;
    width: 400px;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem;

}
.ftimer > div >div input[type=button] {

    width: 100%;
}
.ftimer > div >div label{
    display: flex;
    align-items: center;
}
#taimer{
    font-size: xx-large;
    font-weight: bold;
}
.ftimer > div{
    border: 1px solid rgba(0,0,0,0.8);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}
