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

body {
    font-family: 'Geist';
    font-size: 30px;
    line-height: 1.5;
    color: #717171;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intro p {
    line-height: 1.5;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links p {
    line-height: 1.5;
}

a {
    color: #717171;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

/* Specific styling for prototypos link */
a[href*="prototypos"]:hover {
    opacity: 1;
    color: #0080FF;
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    main {
        padding: 1.5rem;
    }
} 