html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.menu-link {
    color: white;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link-mobile {
    display: block;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-link-mobile:hover {
    background-color: white;
    color: #E2551D;
}

.footer-link {
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-link:hover {
    background-color: white;
    color: #E2551D;
}
