body {
    margin: 0;
    font-family: Verdana;
    color: #333;

    background-image: url("../images/Background.jpg");
    background-repeat: repeat-y;
    background-size: cover;
    background-position: top;
    background-attachment: scroll;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box; 
    z-index: 1000;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 12px 24px;
    background: #ff7b00;
    color: white;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.menu a {
    margin-left: 20px;
    white-space: nowrap;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.2s;    
}

.menu a:hover {
    opacity: 0.7;
}

.profile a {
    white-space: nowrap;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.2s;   
}  

.profile a:hover {
    opacity: 0.7;
}

.content {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 900px;
    margin: auto;
}

.itch {
    display: flex;
    justify-content: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    background-color: #333;
    color: rgb(190, 190, 190);
    padding: 10px 0;
    text-align: center;
}

.footer a {
    color: rgb(190, 190, 190);
}