
body {
    background-color: #a07dc0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.header {
    background-color: #6f3084;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 5px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    text-shadow: 2px 2px 0 black;
    margin-bottom:5px;
}

.header img {
    height: 85px;
    width: 60px;
    margin-right:10px;
    margin-left: 5px;
    margin-top: 5px;
}

h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 8px;
    margin-bottom: 3px;
    color: white;
    text-shadow: 2px 2px 0 black;
}

h2 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 10px;
    margin-bottom: 3px;
    color: white;
    text-shadow: 2px 2px 0 black;
}

h3 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-top:10px;
    margin-left: 8px;
    margin-bottom: 0px;
    color: white;
    text-shadow: 2px 2px 0 black; 
}


h4 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-top:10px;
    margin-left: 8px;
    margin-bottom: 5px;
    color: white;
    text-shadow: 2px 2px 0 black; 
}

.start, .stop, .pause, .reset {
    background-color: #822731;
    color: white;   
    padding: 10px 20px;
    border:none;
    border-radius: 20px; 
    cursor: pointer;
    transition: transform 0.3s;
    margin-left: 7px;
    font-size: 16px;
}

.start:hover, .stop:hover, .pause:hover, .reset:hover {
    background-color: #601b26;
    transform: scale(1.1); 
}

.start:active, .stop:active, .pause:active, .reset:active {
    transform: scale(1.25); 
}

.colors {
    margin-left: 10px;
    padding: 10px;
}


.dropdown {
    position: relative;
    display: inline-block;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
}


.dropbtn {
    background-color: #edbc43;
    border-radius: 40px;
    color: white;
    border: none;
    padding: 15px 30px;
    border:none;
    cursor: pointer;
    margin-left: px;
    font-size: 16px;
    scale:calc(120%);
    
}

/* content blocks */
.dropdown-content {
    display: none;
    border-radius: 18px;
    position: absolute;
    background-color: #be8a2c;
    min-width: 180px;
    border: 1px solid #2a3d84; 
    margin-left: 7px;
    font-size:16px;
    margin-top:5px;
}

/*links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 15px 8px;
    text-decoration: none;
    display: block;
}


.dropdown-content a:hover {
    background-color: #de2f48;
    color: white;
    border-radius: 17px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.timer input[type="number"] {
    border: 2px solid #822731; 
    border-radius: 5px;
    width: 60px;
    height: 50px;
    color: white;
    font-size: 30px;
    margin-left: 25px;
    background: transparent;
    padding: 5px 15px;
}

.timer, .watch {
    color: white;
    font-size:30px;
}

.watch input[type=number] {
    border: 2px solid #822731; 
    border-radius: 5px;
    width: 60px;
    height: 50px;
    color: white;
    font-size: 30px;
    margin-left: 25px;
    background: transparent;
    padding: 5px 15px;
}


.clock {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 0px;
    margin-top:500px;
}

.Block {
    display: inline-block;
    width: calc(50% - 10px);
    margin-left: 550px; 
    margin-right: 20px;
    align-items: center;
    box-sizing: border-box;
}

.Box {
    padding: 20px;
    border: 5px solid #6f3084;
    border-radius: 10px;
    background-color: transparent;
    align-items: center;
    width: 450px;
    margin-top:5px;
    
}

#digital {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    margin-left:110px;
    font-size: 30px;
    margin-top: 0px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}


