* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: rgb(133, 161, 170);
    line-height: 1.6;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    gap: 60px;
}

.logo {
    color: rgb(96, 34, 34);
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu li a {
    text-decoration: none;
    color: rgb(40, 45, 57);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 5px;
    white-space: nowrap;
    display: block;
    text-align: center;
    line-height: 1.2;
}

.menu li a br {
    display: none;
}

.menu li a:hover {
    color: rgb(96, 34, 34);
}

.active {
    color: rgb(96, 34, 34);
    border-bottom: 2px solid rgb(96, 34, 34);
}

.task-header {
    color: #602222;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.task{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.task-button {
    width: 150px;
    padding: 10px 20px;
    background-color: #400606;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.task-button:hover {
    background-color: #050632;
}
