@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    background-color: #1a1a1a;
    color: #f1f1f1;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.main {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3em;
    color: #f05e0f;
    margin-bottom: 20px;
}

.header-links {
    margin-bottom: 20px;
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.link {
    margin: 0 20px;
    font-size: 1.5em;
    color: #f1f1f1;
    transition: color 0.3s ease;
}

.link:hover {
    color: #f05e0f;
}

.repo {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #f05e0f;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.repo:hover {
    background-color: #ff7f50;
}

.repo i {
    margin-right: 10px;
}

p {
    font-size: 1.1em;
    color: #ccc;
}

p a {
    color: #f05e0f;
    text-decoration: none;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
    text-decoration: none;
    color: #f1f1f1;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project i {
    margin-right: 15px;
    color: #f05e0f;
}

.credit {
    margin-top: 50px;
    font-size: 1.2em;
}

.credit a {
    text-decoration: none;
    color: #f05e0f;
    font-weight: bold;
}