@import url('https://fonts.googleapis.com/css2?family=Kirang+Haerang&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Moo+Lah+Lah&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Hanalei&family=Kirang+Haerang&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Moo+Lah+Lah&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    height: 100%;
}

body {
    display: grid;
    color: rgb(18, 17, 17);
    background-attachment: fixed;
    background-image: url("/assets/images/jungle-background.png");
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

#back-arrow {
    width: 5%;
    color: #b07a58;
    -webkit-text-stroke: 1px rgb(61, 33, 10);
    text-decoration: none;
    position: absolute;
    top: 40px;
    left: 40px;
    cursor: pointer;
}

.about-title {
    color: #b07a58;
    -webkit-text-stroke: 1px rgb(61, 33, 10);
    font-family: "Kirang Haerang", system-ui;
    font-size: 35px;
    place-self: center;
    position: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
}

.description-title {
    color: #b07a58;
    -webkit-text-stroke: 1px rgb(61, 33, 10);
    font-family: "Kirang Haerang", system-ui;
    font-size: 45px;
}

.description-text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    margin-top: 20px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255, 0.55);
    border: solid 1px black;
    border-radius: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 10px;
}

.author {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#pp {
    border: solid 2.5px white;
    border-radius: 1000px;
    width: 15%;
}

#author-name {
    text-align: center;
    color: #b07a58;
    -webkit-text-stroke: 1px rgb(61, 33, 10);
    font-family: "Kirang Haerang", system-ui;
    font-size: 45px;
}

#link {
    text-decoration: underline;
    color: #b07a58;
}

@media (max-width: 700px) {
    #pp {
        width: 50%;
    }

    #back-arrow {
        top: 30px;
        left: 20px;
        width: 15% !important;
    }

    #author-name {
        -webkit-text-stroke: 3px rgb(61, 33, 10) !important;
    }

    .about-title {
        -webkit-text-stroke: 3px rgb(61, 33, 10) !important;
    }

    .description-title {
        -webkit-text-stroke: 3px rgb(61, 33, 10) !important;
    }
    
}

