.centered-div {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border: 2px solid #ff6347; /* Red border color (hex code for "tomato") */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}
.danger-text {
    color: #ff8080; /* Red text color (hex code for "tomato") */
}
.blinking-h1 {
    color: #ff8080; /* Light red text color */
    animation: blink 1s infinite; /* Blinking animation */
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.contacts{
    color: green;
}