/* GENERAL INFORMATION */

body {
    font-family: sans-serif;
    background: #0f0f0f;
    color: #ccc;
}

a {
    /* color: #0c7a9c; */
    color: #43AEE2;

}

a:visited {
    color: #43AEE2;
}

section {
    width: 100%;
    overflow-wrap: break-word;
}

main {
    max-width: 800px;
    margin: auto;

    background-color: #464646;
    border-radius: 1rem;

    padding: 10px 100px;
}

img {
    max-width: 100%;
}

header h1 {
    text-align: center;
}

footer {
    text-align: center;
    clear: both;
}


/* HOMEPAGE */
.about-section {
    position: relative;
}

.about-text {
    display: inline-block;
    max-width: 65%;
    padding: 0 0 0 50px;
    vertical-align: top;
}



.about-image {
    display: inline-block;
}

.profile {
    max-height: 200px;
    border-radius: 50%;
    border: white .2rem solid;
}

.donation-container {
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
}

.donation-item {
    display: inline-block;
    width: 40%;
    text-align: center;
}

.donation-wallet {
    font-size: 10px;
}

.donation-qr {
    max-width: 100px;
}

.project-link {
    display: inline-block;
    margin-right: 50px;

}

.project-link:last-child {
    margin-right: 0;
}

.project-link a {
    border: .2rem white solid;
    padding: 0.5rem 1rem;
    color: white;

    text-decoration: none;
}

.project-link a:hover {
    transition: background-color 0.5s linear;
    color: #1d88bb;
    background-color: white;
}

.more-projects {
    display: block;
    margin-top: 20px;
}

/* Media Tags */
@media screen and (max-width: 975px) {
    main{
        padding: 20px 10px;
    }
    .about-text {
        display: block;
        padding: 0;
        margin: auto;
    }
    h2, h3{ text-align: center; }

    .about-more-information {
        display: block;
        margin: auto;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }
}


/* POSTS */
.projectImage img {
    border-radius: 20px;
}


/* For TAGLIST.HTML */
.taglist {
    text-align: center;
    clear: both;
}

/* For NEXTPREV.HTML */
#nextprev {
    /* The container for both the previous and next articles. */
    min-height: 50px;
}

#prevart {
    float: left;
    text-align: left;
}

#nextart {
    float: right;
    text-align: right;
}

#nextart,
#prevart {
    max-width: 33%;
}
