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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-family: 'Inria Serif', serif;
    font-weight: 400;
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 32px;
    font-weight: bold;
}

.logo h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 100;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.navigation {
    align-items: center;
    display: flex;
    gap: 60px;
    font-weight: 400;
    font-size: 16px;
}

#navbar button {
    height: 50px;
    width: 145px;
    border-style: none;
    border-radius: 50px;
    background-color: #505050;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#navbar button:hover {
    background-color: #ff6600;
    transform: scale(1.05);
}

#navbar button:active {
    background-color: #cc5500;
    transform: scale(0.95);
}
