body {
    background: rgb(22, 22, 22);
    background-image: radial-gradient(rgb(32, 32, 32) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
    margin: 0;
    font-family: arial;
}

.navigation {
    background-color: #09072949;


    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;
}

.left img {
    vertical-align: middle;
    margin-right: 10px;
}

.left span {
    color: white;
    font-family: lexend;
    display: inline-block;

    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s linear;
    vertical-align: middle;
    position: relative;
}

.left span::before {
    content: "osp.ray-y.co.uk";
    transition: opacity 0.5s ease;
}

.left span:hover::before {
    content: "Open Source Projects";
}


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

.menu {
    transition: all 0.1s linear;
}

.menu:hover {
    background-color: rgb(26, 23, 43);
    outline: 5px solid rgb(26, 23, 43);

    border-radius: 15px;
}

.menudiv {
    background-color: #1d183186;
    position: fixed;
    transition: all 0.4s;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    backdrop-filter: blur(10px) brightness(0.8);

    animation: fade_in_show 0.2s;

    padding: 5px;
    color: white;
    border-radius: 10px;
    display: flex;


}


@keyframes fade_in_show {
    0% {
        opacity: 0;
        transform: scale(0.9)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

.main {

    padding-top: 70px;

}

.menuicon {
    border-radius: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    flex: 1 1 200px;
    max-width: 90px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.menuicon:hover {
    background-color: #ffffff21;
}


.grid {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 1rem;
    padding: 5px;
}

.grid a {
    text-decoration: none;
    color: white;
    padding: 2px;
}



.body {
    align-items: center;
    text-align: center;
    padding: 3px;
    color: white;
}



.footer {
    background-color: #0e0e0e;
    filter: drop-shadow(0px -9px 4px #0000003f);
    padding-bottom: 30px;
    margin-top: 30px;
    align-items: center;
    text-align: center;
    color: white;
    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);
}

.card {

    background-color: #0f0f0f;
    margin: auto;
    margin-top: 10px;
    padding: 2px;
    border-radius: 30px;
    max-width: 20%;
}

.container {
    display: flex;
    align-items: center;
    padding: 5px;
    transition: 0.3s;
    justify-content: center
}


.text {
    padding-left: 20px;
    text-align: left;
}


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

    .image {
        display: block;
    }

    .text {
        display: block;
    }


    .card {

        background-color: #0f0f0f;
        margin: auto;
        margin-top: 20px;
        padding: 5px;
        border-radius: 30px;
        max-width: 60%;
    }
}

a {
    text-decoration: none;
    color:white;
}

.container:hover {
    transform: scale(1.1);
    color:rgb(129, 65, 212)
}