* {
    cursor: url(../Assets/Cursors/cursor.cur), auto;
}
body {
    cursor: url(../Assets/Cursors/cursor.cur), auto;
    text-align: center;
    background-color: #181818;
    color:white;
    overflow: hidden;
}

.a:hover {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
}

p {
    color: white;
}

#title {
    font-size: 30px;
}

.follow-cursor {
    pointer-events: none;
    z-index: 999;
    transition: 0.1ms;
    opacity: 0.4;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #FF756B;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.1ms;
    -moz-transition: 0.1ms;
    -ms-transition: 0.1ms;
    -o-transition: 0.1ms;
}

#meText {
    font-size: 27px;
    color: white;
}

.header {
    color:white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background-color: #232323;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

a {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    text-decoration: none;
}
  
.logo {
    font-size: 24px;
    font-weight: bold;
}
  
.buttons button {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    background-color: #7f7f7f;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.buttons button:hover {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    background-color: #a53333;
} 

#main {
    font-size: 22px;
    color: white;
    margin-left: 50px;
    line-height: 1.5;
    padding: 20px;
    text-align: left;
}

#comment {
    font-size: 27px;
}