*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:sans-serif;
    background:#111;
    color:white;
    cursor:default;
}

header,
footer{
    padding:1rem;
    border-bottom:1px solid #333;
}

footer{
    border-top:1px solid #333;
    border-bottom:none;
}

nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

a{
    color:white;
    text-decoration:none;
}

main{
    max-width:1200px;
    margin:auto;
    padding:2rem;
}

section{
    margin-bottom:3rem;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:1rem;
}

.card{
    border:1px solid #333;
    padding:1rem;
    border-radius:15px;
    transition: transform 0.3s ease;
}

.link-card{
    margin-bottom: 15px;
    border:1px solid #333;
    padding:1rem;
    border-radius:15px;
    transition: transform 0.3s ease;
}

.active{
    background:#1a1a1a;
}

section > h1 {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

section > p {
    margin-bottom: 40px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

section > p:hover,h1:hover,h2:hover {
    transform: translateY(-3px);
}

section > h2 {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    margin: 10px;
    margin-top: 0;
}

.card p {
    margin: 10px;
    margin-top: 0;
}

.card:hover {
    transform: scale(1.01) translateY(-5px);
}

.link-card:hover {
    transform: scale(1.01) translateY(-5px);
}

nav > a {
    border: 1px solid #222;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav > a:hover {
    background: #222;
    transform: scale(1.02) translateY(-2px);
}

