*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(-125deg, #95d8ff, #e52e2e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    z-index: 1;
	width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 4em;
    padding: 4em 3em;
    /* Remove margin-top and margin-bottom for centering */
	margin: 0 auto;
	top: 10%;
    
}
.menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: rgba(255,255,255);
    border-radius: 1em;
    font-size: 30px;
    display: none;
    align-items: center;
    padding: 1em 2em;
    margin: 0; /* Remove margin-top and margin-bottom */
	font-family: 'Roboto', 'Segoe UI', Arial, sans-serif; 

}
.menu.active {
    display: block;
}

#menu-button{
	background-image: url("menu.png");
	background-size: cover;
	background-color: transparent;
	position: fixed;
	top: 1em;
	right: 1em;
	z-index: 4; /* Above everything else */
	width : 40px;
	height: 40px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
}

.title{
    font-size: 3em;
}
hr{
    width : 100%;
    background-color: white;
    height : 5px;
    border-radius : 1em;
    border: none;
}
#timer{
    font-size: 10em;    
    font-weight : 700;
}
.button-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;

}

.button-wrapper2{
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 1em;
    gap: 1em;

}

button{
    font-size: 1em;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5em 1.5em;
    border-radius : 0.5em;
    border: none;
    color: white;
    cursor: pointer;
    transition : 0.2s ease-in-out;
}
button:hover{
    transform: translateY(-10px);
}
#start{
    background-color: #1eb50b;
}
#stop{
    background-color: #d51313;
}
#reset{
    background-color: #943fb3;
}
#addTime{
	background-color: rgb(51, 171, 204);
}
#shortenTime{
	background-color: rgb(51, 171, 204);
}