/* styles.css for just run on website */
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: normal;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.description {
    color: #ffffff;
    font-size: 1.2em;
    max-width: 500px;
    margin: 0 auto 20px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links li {
    display: inline;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
}

.social-links a:hover {
    text-decoration: underline;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content h2 {
    margin-top: 0;
    color: #000000;
}

.popup-content p {
    color: #333333;
}

.popup-content button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
}

.popup-content button:hover {
    background-color: #333333;
}