/*
blog.ray-y.co.uk © 2025 Ray Dunn

This source code is licensed under the terms of GPL-2.0
https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html

*/


body {
    background: rgb(22, 22, 22);
    background-image: radial-gradient(rgb(36, 36, 36) 1px, transparent 0);
    animation: bgAnim 100s infinite linear;
    background-size: 40px 40px;
    background-position: 0 0;
    margin: 0;
    overflow-x: hidden;
    font-family: arial;

}

@keyframes bgAnim {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}


.navigation {
    background-color: #0f0f0f49;


    backdrop-filter: blur(10px) brightness(0.8);

    z-index: 100;

    position: fixed;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.877) 0px 5px 15px;
    padding: 10px;
}



.left {
    float: left;
}

.right {
    float: right;
    margin-right: 25px;
}

.right a {
    text-decoration: none;
    color: white;
    transition: 0.2s;
    font-weight: bold;
    vertical-align: middle;
    margin-top: 5px;
}

.right a:hover {
    color: rgb(135, 104, 248);
}



.main {
    padding-top: 70px;
}

.body {
    align-items: center;
    text-align: center;

 min-height: 100vh; 
    padding: 3px;
    color: white;
}

.post {
    background-color: #1b1b1b;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(24, 24, 24) 0px 0px 0px 3px;
    width: 35%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    padding: 5px;
    padding-bottom:15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.pfp {
    text-align: left;
    margin-left: 10px;
}

.pfp img {
    border-radius: 25px;
    text-align: left;
    vertical-align: middle;
    max-width: 5%;
}

.pfp span {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.content {
    text-align: left;
    margin-left: 50px;
}




@media only screen and (max-width: 600px) {

    .post {
    background-color: #1b1b1b;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(24, 24, 24) 0px 0px 0px 3px;
    width: 90%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    border-radius: 10px;
        margin-bottom: 10px;
}
    .pfp img {
        border-radius: 25px;
        text-align: left;
        vertical-align: middle;
        max-width: 10%;
    }

    .pfp {
margin-bottom: 10px;
    }
    .content {
        padding-bottom: 20px;
    }
}
.footer {
    background-color: #0e0e0e;
    text-align: center;
    align-items: center;
    color:white;
    filter: drop-shadow(0px -9px 4px #0000003f);
    padding-bottom: 30px;
    min-width: 100%;
    margin-top: 30px;
      position: absolute;

    padding: 10px;
}

.footer-img {
    padding-top: 20px
}

.footer .head {
    color: gray;
    font-family: Lexend;
    cursor: default;
    transition: 0.3s;
}

.footer .head:hover {
    color: rgb(255, 255, 255);

}

.footer hr {
    color: #474747;
    margin-bottom: 20px;
    border-radius: 40px;
    margin-top: 20px;
    width: 50%;
}

.footer a {
    color: gray;
    margin-right: 5px;
    transition: 0.4s;
    margin-left: 5px;
    font-family: Lexend;
    text-decoration: none;
}

.footer a:hover {
    color: rgb(255, 255, 255);
}




@media only screen and (max-width: 600px) {
    .container {
        display: block;
    }

    .image {
        display: block;
    }

    .text {
        display: block;
    }

    .mini-icon {
        height: 20px;
        vertical-align: middle;
        margin-left: 0px;
    }

    .interest-container {
        display: block;
    }

    h3::before,
    h3::after {
        background-color: #444444;
        content: "";
        display: inline-block;
        border-radius: 40px;
        height: 1px;
        position: relative;
        vertical-align: middle;
        width: 20%;
    }
}