.t4e-recordReminder-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    border: 10px solid #9b0000;;
}

.canvas-container {
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 1;
    position: relative;
}

.hideElement{
    display: none;
}

#circle-container{
    width: 100%
}

#recordReminder-circle-01 {
    background-color: #9b0000;
    width: 30vw;
    height: 30vw;
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    animation: recordPulse 5s ease 0s infinite;

}

#pressRecord-txt{
    text-align: center;
    font-size: 2.3em;
}

#mural-container{
    padding: 50px;
    margin-top: auto;
    margin-bottom: auto;
}

@keyframes recordPulse {
	0%,
	50%,
	100% {
		opacity: 1;
        background-color: #9b0000;
        -webkit-box-shadow:0px 0px 0px 0px rgba(255,71,71,0.9);
        -moz-box-shadow: 0px 0px 0px 0px rgba(255,71,71,0.9);
        box-shadow: 0px 0px 0px 0px rgba(255,71,71,0.9);
	}

	25%,
	75% {
        background-color: #da0000;
        -webkit-box-shadow:0px 0px 56px 18px rgba(255,71,71,0.9);
        -moz-box-shadow: 0px 0px 56px 18px rgba(255,71,71,0.9);
        box-shadow: 0px 0px 56px 18px rgba(255,71,71,0.9);
	}
}