*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html{
    display: grid;
    height: 100%;
    place-items: center;
    Background: linear-gradient(45deg,#FF7400,#FFA55B,#ffffff,#FFA55B,#FF7400);
	Background-size: 300% 300%;
	animation: color 12s ease-in-out infinite;
	}
	@keyframes color{
	0%{
		background-position: 0 50%;
	}
	50%{
		background-position: 100% 50%;
	}
	100%{
		background-position: 0 50%;
	}
}
.wrapper{
    width: 1100px;
    height: 680px;
    border-radius: 10px;
    cursor: default;
    background: linear-gradient(45deg, #FF7400,#ffffff,#ff9900);
    Background-size: 100% 100%;
	animation: color 12s ease-in-out infinite;
	}
	@keyframes color{
	0%{
		background-position: 0 50%;
	}
	50%{
		background-position: 100% 50%;
	}
	100%{
		background-position: 0 50%;
	}
}
.wrapper .display{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffcfa7;
    border-radius: 6px;
    width: 1085px;
    height: 670px;
    text-align: center;
    z-index: 99;
}

.wrapper .display .relogio, #relogio{
    line-height: 150px;
    color: white;
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 3px 3px 5px black;
}
.wrapper .display .data{
    line-height: 70px;
    color: white;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 3px 3px 5px black;
}
.wrapper .display .Timer{
    font-family: sans-serif;
    display: inline-block;
    padding: 20px 30px;
    width: 800px;
    height: 400px;
    border-radius: 30px;
    background: white;
}
.timer__part {
    font-size: 270px;
    font-weight: bold;
}
.timer__btn {
    margin-right: 10px; /* Adiciona um espaçamento entre os botões */
    border-radius: 20px;
    padding: 10px;
}
.timer__btn--start {
    background: #00b84c;
}
.timer__btn--stop {
    background: #ff0256;
}
.endtimer {
    display: none;
    font-size: 78px;
    letter-spacing: 5px;
    font-family: 'Anton', sans-serif;
    font-weight: bold;
    margin-top: 30px;
    animation: blink 0.5s infinite;
    text-shadow: 4px 4px 4px black; /* Adiciona um contorno preto ao texto */
    color: red; /* Adiciona a cor vermelha diretamente para evitar a sobreposição de cores */
}

.timer__part.warning { /* Adiciona um estilo especial para a parte do cronômetro quando faltar 30 segundos */
    color: red;
}

@keyframes blink {
    0% {
        color: red;
    }
    50% {
        color: yellow;
    }
    100% {
        color: red;
    }
}

@keyframes blink2 {
    0% {
        color: inherit;
    }
    50% {
        color: red;
    }
    100% {
        color: inherit;
    }
}
.warning {
    color: red; /* Altere conforme necessário */
    font-weight: bold; /* Altere conforme necessário */
    /* Adicione mais estilos conforme desejado para destacar o cronômetro */
}

.blinking {
    animation: blink2 1s infinite;
}

.avisos {
    margin-top: 20px; /* Adicione margem para separar dos elementos acima */
}

#avisoInput {
    padding: 10px;
    border: 2px solid #000;
    border-radius: 5px;
}

#btnAviso {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

#btnAviso:hover {
    background-color: #0056b3;
}

.controls {
    display: flex;
    align-items: center; /* Centraliza os elementos verticalmente */
}