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

@font-face {
  font-family: Boldonse;
  src: url('fonts/Boldonse-Regular.ttf') format('truetype');
  font-weight: 400;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 8vh 1rem 0;
}

.title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #313131;
    font-family: 'Boldonse', fantasy;
    text-align: center;
    padding: 0 1rem;
}

.title .highlight { 
    color: #198754;
}

.icons {
    margin-top: 4vh;
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
}

.icons a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.icons .icon {
    width: clamp(24px, 6vw, 32px);
    height: clamp(24px, 6vw, 32px);
    fill: #313131;
    transition: fill 0.3s ease;
}

.icons a:hover .icon {
    fill: #198754;
}

.copyright {
    margin-top: auto;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.copyright p {
    font-size: 0.875rem;
    color: #6c757d;
}

@media (max-width: 480px) {
    body {
        padding: 6vh auto;
    }

    .title {
        font-size: 2rem;
    }

    .icons {
        margin-top: 3vh;
        gap: 1.5rem;
    }

    .icons .icon {
        width: 28px;
        height: 28px;
    }

    .copyright {
        padding: 1.5rem 1rem 1rem;
    }

    .copyright p {
        font-size: 0.75rem;
    }
}
