/*
    Created on : July 6th, 2023
    Author     : adam-bien.com
*/
body{
    background-color: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 1rem;
    line-height: 1.6;
    color: #333;
}

main {
    width: 100%;
    max-width: 680px;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1{
    color: #3EB0D8;
    text-shadow: 2px 2px 4px rgba(62, 176, 216, 0.1);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title{
    color: #F07102;
    font-weight: 300;
}

.airhacks-list{
    margin-top: 2rem;
}

.airhacks-list nav ul {
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.airhacks-link{
    font-size: 1.125rem;
    font-weight: 400;
    display: inline-block;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    position: relative;
}

.airhacks-link:hover {
    color: #3EB0D8;
    transform: translateX(8px);
}

a{
    color: #2b2b2b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.airhacks-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3EB0D8;
    transition: width 0.3s ease;
}

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

li{
    margin-bottom: 0.25rem;
    list-style: none;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

footer p {
    margin: 0;
    color: #666;
}

footer a {
    color: #666;
    border-bottom: 1px solid #999;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #3EB0D8;
    border-bottom-color: #3EB0D8;
}

.icon{
    height: 1.5rem;
}
