:root {
    --color-primary: #274ba9;
    --color-secondary: #c18bbc;
    --color-accent: #f7f7f7;
    --color-background: #f2f2f2;
    --color-hover: #4567b7;
    --color-text: #333333;
    --color-active: #66d9ef;
}
body {
    font-family: Arial, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    background-color: var(--color-secondary);
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    animation: fadeInDown 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main {
    padding: 40px 20px;
}
section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-in-out;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    margin: 10px 0;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--color-secondary);
}
.social {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0px;
    padding: 0px;
    gap: 18px;
}
.social li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 12px;
}
.social li a {
    color: white;
    transition: color 0.3s;
    font-size: 32px;
}
.social li a:hover {
    transform: scale(1.2);
}
.home-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}
.home-button:hover {
    background-color: var(--color-secondary);
}
footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 10px;
    margin-top: 20px;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
