:root {
    --bg-color: #ebe9e3;
    --text-color: #121212;
    --button-bg: #121212;
    --button-text: #ebe9e3;
}

.dark {
    --bg-color: #121212;
    --text-color: #ebe9e3;
    --button-bg: #ebe9e3;
    --button-text: #121212;
}

.dark .logo img {
    filter: brightness(0) invert(1);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Helvetica, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.8s, color 0.8s;
}

body {
    display: flex;
    flex-direction: column;
    animation: fadeIn 1.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.toggle-theme {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-color);
    background: none;
    color: var(--text-color);
    border-radius: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.logo img {
    height: 50px;
    margin-bottom: 0.5rem;
    transition: filter 0.3s;
}

.logo span {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    display: block;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.button {
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

footer {
    position: relative;
    text-align: center;
    font-size: 0.9rem;
    padding: 1rem;
}

.footer-socials {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 480px) {
    .footer-socials {
        gap: 0.5rem;
        font-size: 1rem;
        right: 1rem;
    }
}

.footer-socials a {
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-socials a:hover {
    transform: scale(1.4);
}
						  
@media (hover: none) and (pointer: coarse) {
  .footer-socials a:hover {
    transform: none !important;
  }
}