@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Ubuntu&display=swap');

html {
    height: 100vh;
    width: 100vw;
}

body {
    position: absolute;

    font-family: 'Noto Sans JP', sans-serif;
    background-image: url('./res/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    color: white;
}

#main {
    overflow-y: auto;
    flex-direction: column;
    backdrop-filter: blur(7px) brightness(70%);
    height: 100%;
    width: 100%;
}


@media screen and (min-width: 1500px) {
    #header {
        width: 1500px;
        display: flex;
        margin: 0 auto;
    }

    #description {
        position: relative;
        margin-top: 120px;
        margin-left: 20px;
        margin-right: 60px;
        font-size: 33px;
        flex-grow: 1;

    }

    .horizontal-line {
        position: absolute;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.486);
        left: 0;
        bottom: 40px;
        width: 100%;
        filter: drop-shadow(0px 4px 3px #0000004b);
    }

    #panel-list {
        display: flex;
        justify-content: center;
        gap: 60px;
        font-size: 24px;
    }


}

@media screen and (max-width: 1499px) {
    #header {
        flex-direction: column;
        display: flex;
        margin: 0 auto;
    }

    #description {

        position: relative;
        margin-top: 30px;
        margin-left: 20px;
        margin-right: 60px;
        font-size: 28px;
        flex-grow: 1;
        text-align: center;
    }

    .horizontal-line {
        position: relative;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.486);
        left: 0;
        bottom: 0px;
        width: 100%;
        filter: drop-shadow(0px 4px 3px #0000004b);

    }

    #panel-list {
        display: flex;
        justify-content: center;
        gap: 20px;
        font-size: 24px;
    }


}



#content {
    width: 100%;
}

#name {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-top: 60px;
}

#name>img {
    border-radius: 85px;
    height: 270px;
    filter: drop-shadow(0px 4px 3px #0000004b);
}

#name>div {
    font-weight: bold;
    filter: drop-shadow(0px 4px 3px #0000004b);
}



#description>div {
    margin-left: 70px;
    filter: drop-shadow(0px 4px 3px #0000004b);
}



#copyright {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 10px;
}


.pop-panel {
    text-align: center;
    border: 2px solid white;
    width: 200px;
    border-radius: 20px;
    filter: drop-shadow(0px 4px 3px #0000004b);
}

.item {
    border: 1px solid white;
    width: 100%;
    margin-top: -1px;
    padding: 7px;
    filter: drop-shadow(0px 4px 3px #00000081);
    text-align: center;
    box-sizing: border-box;
    background-color: #6b6b6b4b;
}

.item-name {
    background-color: #292929;
    padding-left: 9px;
}

.item-description {
    margin: 6px;
    color: black;
}

#item-list {
    display: flex;
    flex-direction: column;
    width: 300px;
}

#project-content {
    width: 1200px;

    margin-top: -1px;
    border-top: 1px solid white;
}

#project-panel {
    margin-top: 50px;
    display: flex;

    justify-content: center;
}

#project-title {

    font-size: 33px;
    margin-left: 30px;
}

#project-description {
    font-size: 26px;
    margin-left: 50px;
    margin-top: 10px;
}

#blog-panel {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 40px;
}

.article {
    width: 320px;
    background-color: white;
    color: black;
    overflow: hidden;

}

.border {
    position: absolute;
    left: 95px;
    top: 20%;
    background: #000000;
    width: 1px;
    height: 65%;
    opacity: 0.3;
}

.tag-list {
    display: flex;
    gap: 5px;
    margin-left: 3px;
}

.article .date {
    margin-left: 10px;
}

.article .title {
    font-size: 22px;
    margin-left: 10px;

    margin-right: 10px;
}

.article .content {
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-bottom: 10px;
    color: #444444;
}

.tag {
    background-color: #DDEEFF;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 10px;
}

.article img {
    width: 320px;
}

.first_content {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#social-panel {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 40px;
}


.social-item {
    border: solid 2px white;
    border-radius: 50px 3px;
    width: 200px;
    height: 120px;
    text-align: center;
    font-size: 22px;
    line-height: 120px;
    transition: all 0.5s ease-in-out;
    opacity: 1;

}

.social-item>img {
    position: relative;
    width: 40px;
    height: 40px;
    top: 10px;

    padding-right: 5px;
}

.social-item :hover {
    opacity: 0;

}

#quick-panel {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.quick-item {
    position: relative;
    margin-top: 50px;
}

.quick-item>img {
    width: 400px;
    border: solid 1px white;
}

.quick-item>div {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 23px;
    padding-left: 20px;
    margin-bottom: 5px;
    box-sizing: border-box;
    background-color: #ac3c3c88;
}