@font-face {
    font-family: 'OldEurope';
    src: url('./Old\ Europe.ttf') format('truetype'),
         url('./Old\ Europe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alagard';
    src: url('./alagard.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothicPixles';
    src: url('./GothicPixels.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}


body{
    background-image: url('./me4.png') ;
    min-width: 425px;
    
    
}

#title{
    background-color: black;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    margin-top: 70px;
    font-family: 'GothicPixles', sans-serif;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    min-width: 425px;
}

#aboutme{
    background-color: black;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    min-width: 425px;
    
    
}

#aboutme img {
    max-width: 100%;
    max-height: 100%;
}

#textaboutme {
    background-color: black;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    padding-bottom: 3%;
    font-family: 'Alagard';
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-direction: column;
    line-height: 0.01;
    min-width: 425px;
    
}




#bottom {
    background-color: black;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1%;
    padding-bottom: 3%;
    border-top: 3px solid red;
    font-family: 'Alagard';
    color: red;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    justify-content: center;
    align-items: center;
    font-size: 20px;
    min-width: 425px;
}

#bottom a {
    text-decoration: none;
    color: red;
    margin: 0 10px;
    white-space: nowrap; /* Prevents wrapping within the link text */
}

#bottom a:hover {
    text-decoration: underline;
    color: yellow;
}

#loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none; /* Initially hidden */
}

#content {
    display: none; /* Initially hidden */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}