body {
    font-family: Arial, sans-serif;
    background-color: #2B3D41;
    color: #83A0A0;
    margin: 0;
    padding: 0;
    text-align: left;
}

header {
    background-color: #BCA0BC;
    padding: 0px;
    text-align: center;
    position: relative;
    list-style-type: none;
    text-decoration: none;
}

#logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

h1 {
    color: #F9B9F2;
}

nav {
    background-color: #BCA0BC;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #2B3D41;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #F9B9F2;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

footer {
    background-color: #4C5F6B;
    color: #83A0A0;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #BCA0BC;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #F9B9F2;
}

p{
    font-family: Monaco, monospace;
}

.start-button {
    background-color: #F9B9F2;
    border: none;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.start-button:hover {
    background-color: #BCA0BC;
}

