* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.content-box {
    background-color: #ef1047; /* Синій фон для квадрату */
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    width: 400px;
}

.content-box h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif; /* Сучасний шрифт для заголовка */
}

.content-box p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.contact p {
    margin-top: 20px;
    font-size: 16px;
}

.contact a {
    color: #FFDD57; /* М’який жовтий для лінків */
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
    color: #FFD700; /* Яскравіший жовтий на hover */
}
