body{
    background-color: #FFDA68;
    color: #000;
    margin: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
}
html {
    scroll-behavior: smooth;
}

a{
    color: #000;
    text-decoration: none;
}
h1{
    font-size: 128px;
    font-weight: 700;
    letter-spacing: -5px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 96px; /* Adjust the size as needed */
        font-weight: 700;
        letter-spacing: -2px; /* Adjust the letter spacing as needed */
    }
}

h2{
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-top: 3px solid #000;
    display: inline-block;
    padding-top: 20px;
    margin-top: 50px;
}

h3{
    font-size: 2rem;
    font-weight: 700;
}
table {
    width: 100%;
    border-collapse: collapse; /* Ensure borders don't double up */
}

th, td {
    border-bottom: 1px solid black; /* Set border to black */
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2; /* Optional: Add background colour for headers */
}
td:first-child {
    font-weight: bold;
}
.avatar{
    width: 150px;
    height: auto;
    border-radius: 150px;
    border: 2px solid;
}

.fixed-right {
    position: fixed;
    top: 50px; /* Distance from the top of the viewport */
    right: 50px; /* Distance from the right of the viewport */
    border-left: 3px solid #7F6D33;
}
.fixed-right ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 30px;

}
.fixed-right ul li a{
    color:#000;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-decoration: none;
}
.fixed-right ul li a:hover{
    color:#7F6D33;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}