@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Comic Relief", system-ui;
    font-weight: 400;
    font-style: normal;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f0f;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 20px;
}

.title h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff4f4f;
    font-weight: bolder;
    letter-spacing: 4px;
}

.text p {
    font-size: 18px;
    margin: 5px 0;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact a {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    letter-spacing: 1px;
    background-color: #cc3939;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.contact a:hover {
    background-color: #9e1c1c;
}