
body {
    background-color: #e0c6a9;
    margin: 0%;
}
#return {
    position: fixed;
    top: 2rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: transparent;
    transition: background-color 0.3s;
}
.logTitle {
    display: flex;
    justify-content: center;  
    align-items: center;
    background-color: #e0c6a9;
}
.logTitle > h1 {
    color: rgb(0, 0, 0);
    font-family: 'IMB Plex Mono', serif;
    font-size: 350%;
    align-items: center;
}
.text {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    height: fit-content;
    width: auto;   
    position:absolute;
    top:50%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top:-100px;
    padding: 1rem; 
    margin-bottom: 2rem;
}
.text > p {
    color: rgb(0, 0, 0);
    font-family: "Georgia";
    font-size: 120%;
}
@media (max-width: 768px) {
    body {
        background-color: black;
    }
    h1{
        color: rgb(15, 179, 15);
        font-family: 'Tektur', serif;
        font-size: 350%;
    }
    .logTitle {
        display: flex;
        justify-content: center;  
        align-items: center;
        background-color: rgb(0, 0, 0);
    }
    .logTitle > h1 {
        color: rgb(255, 255, 255);
        font-family: 'IMB Plex Mono', serif;
        font-size: 350%;
        align-items: center;
    }
    .text {
        display: flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        height: fit-content;
        position:absolute;
        top:350px;
        margin-top:-100px;
        left:auto;
        width: auto;
        margin-left: 5%;
        margin-right: 5%;
        padding: 1rem; 
        margin-bottom: 2rem;
    }
    .text > p {
        color: rgb(0, 0, 0);
        font-family: 'Courier Prime', serif;
        font-size: 100%;
    }
  }