p {
    color: blanchedalmond;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

a {
    color: rgb(0, 225, 255);
    font-size: 6vh;
    font-weight: bold;
  } 

h1 {
    color: blanchedalmond;
}

h2 {
    color: blanchedalmond;
}

body {
    background-color: black;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
  
td, th {
    border: 1px solid blanchedalmond;
    color: blanchedalmond;
    text-align: left;
    padding: 8px;
}
  
tr:nth-child(even) {
    background-color: rgb(94, 94, 94);
}

li {
    color:blanchedalmond;
}


.displaybox {
    position: static;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background-color: darkred;
    gap: 10vh;

}
.displaybox div {
    margin: 0 auto;
}

.Navbar {
    position: fixed;
    display: flex;
    z-index: 9999 !important;
    justify-content: center;
    border-radius: 12px;
    height: 6vh;
    width: 95%;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -30%);
    user-select: none;
    background-color: rgb(63, 72, 82);
    opacity: 1;
    padding: 3vh;
    gap: 0.25vw;
}

.navbutton {
    display: flex;
    background-color: rgb(63, 72, 82);
    width: 16.66%;
    height: 200%;
    transition: all 0.5s ease;
    justify-content: center;
    align-items: center;
    top: 0%;
    transform: translate(0%, -25%);
    user-select: none;
}

.navbutton:hover{
    background-color: black;
    width: 20%;
}

#displayparent {
    display: flex;
    flex-direction: column;
    gap: 20vh;
}

#siteinfo {
    width: 24vw;
    height: 88vh;
    z-index: 1;

}

#ttbar1 {
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 90%;
    height: 15%;
    top: 5%;
    border-radius: 12px;
    background-color: rgb(0, 0, 0);
    user-select: none;
}

#ttbar1 h1 {
    text-align: center;
}
#horsebutton {
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 10%;
    border-radius: 12px;
    background-color: rgb(43, 47, 51);
    user-select: none;
    transition: all 1s ease;
}
#horsebutton:hover {
    width: 95%;
    background-color: black;
}

#horse {
    display: flex;
    position: absolute;
    transform: translate(50%, 0%);
    opacity: 0;
    transition: opacity 5s ease;
}