html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ccd9ff;
}

header h1 {
    text-align: center;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 10px;
}

header nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.main {
    background: #e6ecff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.social-link a {
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}