/* styles.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.logo {
    max-width: 200px; /* Logonun boyutunu ayarlayın */
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1rem;
    color: #666;
}

.phone {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}

.phone a {
    text-decoration: none;
    color: #007bff;
}

.phone a:hover {
    text-decoration: underline;
    color: #0056b3;
}
