@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.noto-sans-jsp {
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

body,
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    line-height: 1.5;
    font: inherit;
    box-sizing: border-box;
    color: #dedede;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #222222;
    padding: 20px 25px;
    font-size: 1rem;
    font-family: "Noto Sans", serif;
    font-weight: 400;
    font-variation-settings:
        "wdth" 100;
    font-style: normal;
    font-optical-sizing: auto;
}

p {
    margin-bottom: 20px;

}

a:hover {
    color: #77e4ff;
    padding-bottom: 0px;
    border-bottom: 1px solid #77e4ff;
    transition: all .3s
}

a {
    text-decoration: none;
    color: #00ccff;
    padding-bottom: 1px;
    border-bottom: 1px solid #00ccff;
    transition: all .3s
}

a.rm-link-style {
    color: #dedede;
    text-decoration: none;
    border: 0;
}

strong.project-name,
strong,
b {
    font-weight: bold;
}

.container {
    display: block;
    margin: auto;
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    min-height: 50%;
    padding: 50px;
}

.content-block {
    max-width: 900px;
    margin: auto;
    border-left: 1px solid rgba(255, 255, 255, .1);
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding: 0 30px;
}

.basic-btn,
.btn-s {
    background-color: #c0c0c0;
    border: 1px solid #414141;
    color: #303030;
    padding: 7px 14px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background .3s;
}

.basic-btn:hover {
    background-color: #cdcdcd;
}

.basic-btn:active {
    background-color: #dedede;
}

.btn-s {
    padding: 3px 5px;
    margin-right: 0;
    font-size: .8rem;
}

.alt-btn {}


.new-section {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
}

.fsize-s {
    font-size: 14px;
}

.fsize-vs {
    font-size: 12px;
}

.rm-margin {
    margin-bottom: 0;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
}

h3 {

    font-weight: bold;
    margin-bottom: 15px;



}

.opaconhover p {
    opacity: .4;
    transition: opacity .4s;
}

.opaconhover:hover p {
    opacity: 1;
    cursor: default;
}

ul,
ol {
    margin-bottom: 20px;
}

ul li,
ol li {
    margin-left: 40px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.emoji {
    font-size: 16px;
}

.btn-active {
    background-color: #00ccff;
}



@media only screen and (max-width: 740px) {
    body {
        padding: 15px 20px;
    }

    .btnwidfull-m {
        width: 100%;
    }

    .container {
        padding: 20px 20px;
    }

    .content-block {
        border: 0;
        padding: 0;
    }

    .opaconhover p {
        opacity: 1;
    }

}



/* index only css */

.projects-container {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 15px;
    ;
}

a.project-info {
    display: block;
    background-color: #222;
    color: #c0c0c0;
    padding: 0;
    border: 0;
    width: 100%;
    font-size: .9rem;
    text-transform: capitalize;
    transition: all .3s;

}

a.project-info span {
    display: inline-block;
    padding: 7px 5px;
    background-color: #111;
    min-width: 2rem;
    text-align: center;
    margin-right: 7px;
    transition: all .3s;
}

a.project-info:hover {
    background-color: #111;
}

a.project-info:hover span {
    margin-right: 12px;
    background-color: #222;

}

@media only screen and (max-width: 740px) {
    .projects-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 400px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}