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

p {
    color:white
}

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

.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 {
    color: white;
}

#title {
    font-size: 30px;
}

.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;
} 

#comment {
    font-size: 27px;
}

a {
    text-decoration: none;
    color: white;
    font-size: 27px;
}

.projects {
    padding: 20px;
    padding-left: 50px;
    text-align: left;
    font-size: 22px;
}


.underline {
    position: relative; 
}
  
.underline::before {
    content: ""; 
    position: absolute;
    left: 0;
    bottom: -2px; 
    width: 100%;
    height: 2px;
    background-color: #FF756B;
    transform: scaleX(0); 
    transform-origin: left;
    transition: transform 0.3s ease-out; 
}
  
.underline:hover::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

ul {
    margin: 10px;
    padding: 20px;
}
  
ul li {
    margin-bottom: 30px;
}