body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f7f7f7;
}

#usernameInput {
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#generateButton, #copy {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0f2942;
    color: white;
    cursor: pointer;
}

.container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#gitCardContainer {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.embeded {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#embedCode {
    width: 360px;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}