@charset "UTF-8";

/*

    YDITS Site

    Copyright (C) よね/Yone

    No modification or reproduction of any kind is permitted.
    改変や複製を一切禁じます。

*/

.mobileBreakline {
    display: none;
}

#hero {
    display: flex;
    flex-direction: column;

    height: fit-content;
    overflow: hidden;

    background-color: #303030ff;
    color: #eeeeee;

    user-select: none;
}

#hero .wrapper {
    animation-name: fadein;
    animation-duration: 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero>.wrapper>img {
    width: 100%;
}

#main {
    min-height: 50vh;
}

#main .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.3em;
}

#main .sections {
    padding-top: 6em;
    padding-bottom: 6em;
}

#main .sectionTitle {
    margin-bottom: 2em;
    font-size: 2em;
    text-align: center;
}

#main .sectionTitle::after {
    display: block;
    width: 1em;
    height: 4px;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    background-color: #808080ff;
    content: "";
}

#about {
    /* display: flex;
    flex-direction: column;
    align-items: center; */

    padding-left: 10vw;
    padding-right: 10vw;
    /* text-align: center; */
}

#about>.content>.content {
    margin-top: 6em;
    margin-bottom: 6em;
}

.aboutTitle {
    font-size: 3em;
    margin-top: 1rem;
    margin-bottom: .5em;
}


#link_news {
    display: flex;
}

#news {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#apps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#officialAccounts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#project {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav>ul>li:hover {
    background-color: #ffffff80;
}

header nav>ul>li>a {
    color: #ffffff;
}

@media (max-width: 768px) {
    header nav>ul>li>a {
        color: #010101;
    }

    #hero>.wrapper>img {
        width: 170%;
    }

    #about {
        font-size: 1em;
    }

    .mobileBreakline {
        display: block;
    }
}