* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons img {
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.icons img:hover {
    transform: scale(1.1);
}
