@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

html,
body {
    height: 100%;
}

body {
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
}

.landing-container {
    text-align: center;
}

.logo-container {
    background-color: #fff; /* White background behind the logo */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.logo-container img {
    width: 200px;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 36px;
    color: #fff; /* Default color white */
    transition: color 0.3s ease-in-out;
}

.social-icon.linkedin {
    color: #0077b5;
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.globe {
    color: #fff; /* Ensuring default white color */
}

.social-icon:hover {
    color: #888;
}

.website-link {
    margin-top: 20px;
}

.website-button {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: 0 !important;
    border-radius: 50px;
    background: #000;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
}

.website-button:hover {
    background-color: #444;
}
