body {
    margin: 0;
    padding: 0;
    background-color: #45c7ab;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 30px;
}

.logo {
    width:60%;
    
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #393939;
    margin-bottom: 10px;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}