
@font-face {
    font-family: 'Dark Potion 108';
    src: url('/Dark-Potion-108.ttf');
}

@font-face {
    font-family: 'Dark Potion 54';
    src: url('/Dark\ Potion\ 54.ttf');
}

@font-face {
    font-family: 'Dark Potion 27';
    src: url('/Dark\ Potion\ 27.ttf');
}


body {
    font-family: 'Dark Potion 27', sans-serif; /* Optional: A clean default font */
    margin: 20px 40px;
    min-height: 100vh;
}



.page-margin {
    margin-top: 0px;
    margin-right: 40px;
    margin-left: 40px; /* Adds space around the entire page */
    padding: 0; /* Resets any default padding */
    background-color: transparent;
}


h1 {
    font-family: 'Dark Potion 54', sans-serif;
    color: white;
    font-size: 48px;
    margin: 20px 0px;

}

h2 {
    font-family: 'Dark Potion 54', sans-serif;
    font-size: 40px;
    color: yellow;
    margin-top: 0;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Dark Potion 54', sans-serif;
    color: #ff8402;
    font-size: 34px;
    margin-bottom: 20px;
}

h4 {
    font-family: 'Dark Potion 54', sans-serif;
    color: #e95d10;
    font-size: 24px;
    margin-bottom: 20px;
}



img {
    background-color: transparent;
}

p {
    font-family: 'Dark Potion 27', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #726fe4;
    background-color: transparent;
    margin-bottom: 20px;
    margin-left: 40px;
}

a {
    font-family: 'Dark Potion 27', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #ff24e2;
    background-color: transparent;
    margin-bottom: 20px;
    margin-left: 40px;
}


hr {
    border: none;
    height: 5px;
    /* Set the hr color */
    color: white;  /* old IE */
    background-color: white;  /* Modern Browsers */
    margin: 100px 0px;
}

.mh {
    color: #ac1ed5;
}

.fr {
    color: #54fc4d;
}

ul {
    font-family: 'Dark Potion 27', sans-serif;
    color: #726fe4;
    background-color: transparent;
}

ol {
    margin-left: 44px;
}

li {
    font-family: 'Dark Potion 27', sans-serif;
    font-size: 20px;
    color: #726fe4;
    background-color: transparent;
    line-height: 1.5;
}

table, th, td {
    border: 5px solid;
    border-color: #ff017e;
    font-family: 'Dark Potion 27', sans-serif;
    font-size: 25px;
    color: #ff24e2;
    border-collapse: collapse;
}

table {
    margin: 20px auto;
    width: auto;
}

th, td {
    padding: 20px;
}




.horizontal {
    display: flex; /* Use flexbox to align children horizontally */
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start; /* Align items to the top */
    background-color: transparent;
}

.seamless-vertical { /* Use flexbox to align children vertically */
    display: flex;
    flex-direction: column;
    gap: 0px; /* Space between */
    background-color: transparent;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto; 
    max-height: 90vh;
    max-width: 90vw;
    width: auto;
    height: auto;
    margin-bottom: 40px;
    background-color: transparent;
}

.button {
    display: block;
    margin: 20px;
    padding: 10px;
    border: 5px solid;
    border-radius: 3px;
    border-color: #4df4fd;
    color: #4df4fd;
    background-color: black;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dark Potion 27', sans-serif;
    cursor: pointer;
    text-align: center;
}
