/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #1c1e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 10px;
}

.subtitle {
    color: #636e72;
    margin-bottom: 30px;
}


.repo-list {
    list-style: none;
}

.repo-list li {
    margin-bottom: 15px;
}


.card {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card:hover {
    background: #e3f2fd;
    border-color: #2196f3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.icon {
    font-size: 2rem;
    margin-right: 15px;
}

.content {
    text-align: left;
}

.title {
    display: block;
    font-weight: bold;
    color: #0984e3;
    font-size: 1.1rem;
}

.description {
    font-size: 0.85rem;
    color: #b2bec3;
}
