body {
    background-color: #1F2933;
    color: #E5E7EB;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

nav a {
    color: #E5E7EB;
    text-decoration: none;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #60A5FA;
}

nav a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #60A5FA;
    transition: width 0.3s ease-in-out;
}

nav a:hover::before {
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@font-face {
    font-family: 'impact';
    src: url("../others/IMPACT.TTF");
}

.title {
    font-family: 'impact';
}