body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 225, 225);
    color: rgb(138, 0, 0);
}
h1 {
    color: rgb(78, 0, 0);
}
img {
    border-radius: 10px;
}
.zmall {
    font-size: 0.6em;
    color: rgb(189, 0, 0);
}
a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    border-radius: 10px;
    height: 30px;
    width: 380px;
    transition: all 0.3s ease;
}
a:hover {
    background-color: rgba(124, 0, 0, 0.3);
}
#topBar {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(78, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: rgb(51, 0, 0);
}
#mainContent {
    margin-top: 80px;
}