:root {
    --background: black;
    --foreground: #fff;
    --saikoda-color: #2fe9ec;
}

@font-face {
    font-family: 'OxaniumMedium';
    font-style: normal;
    font-weight: normal;
    src: url('./assets/Oxanium-Medium.ttf');
}

* {
    outline: none;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'OxaniumMedium', sans-serif;
    font-size: 16px;
}
.main {
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.page-info {
    gap: 2rem;
    max-width: 50rem;
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
    height: auto;
}
    .main span {
        color: var(--saikoda-color);
    }
    .main__header, .main__footer {
        max-width: 1200px;
        width: 90%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    .responsive__title {
        display: none;
    }
    .main__header article {
        width: 33%;
    }
    .main__header .title div {
        text-align: center;
    }
    .main__footer {
        padding: 0 0 2rem;
    }
    .page-info header {
        justify-content: center;
    }
    .title__header {
        color: var(--saikoda-color);
        position: relative;
        top: 1rem;
    }
    .main__footer__mentions .sub-aside {
        padding-bottom: 0.5rem;
        text-align: right;
    }
    .main__footer__mentions .sub-droits {
        font-size: 0.75rem;
    }
    .main__content {
        flex: 1;
        max-width: 1200px;
        max-height: 600px;
        width: 90%;
        background:url(./assets/saikodarmy.webp) center center no-repeat;
        background-size: cover;
        position: relative;
    }
        .main__content img {
            position: absolute;
            bottom: 0;
            height: auto;
        }
    .main a {
        color: var(--foreground);
    }
    .main__wip {
        color: var(--saikoda-color);
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: flex-end;
    }
    .main__wip img {
        width: 4rem;
        height: auto;
    }
    .main__footer__creative {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .main__footer__border {
        display: flex;
        gap: 0;
        align-items: stretch;
        justify-content: center;
    }
        .main__footer__border .bloc {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .main__footer__border .bloc span {
            height: 1.5rem;
            width: 1.5rem;
            border-color: var(--saikoda-color);
            border-style: solid;
            display: inline-block;
        }
        .start {
            position: relative;
            left: 0.5rem;
        }

        .end {
            position: relative;
            right: 0.5rem;
        }
        
        .start span:first-child {
            border-width: 0.2rem 0 0 0.2rem;
        }
        .start span:last-child {
            border-width: 0 0 0.2rem 0.2rem;
        }
        .end span:first-child {
            border-width: 0.2rem 0.2rem 0 0;
        }
        .end span:last-child {
            border-width: 0 0.2rem 0.2rem 0;
        }

@media screen and (max-width: 1024px) and (min-width: 851px) { 
    .main__header, .main__footer, .main__content {
        width: 95%;
    }
}
@media screen and (max-width: 850px) and (min-width: 801px) { 
    html, body {
        font-size: 14px;
    }
    .main__header, .main__footer, .main__content {
        width: 95%;
    }
    #saikar {
        display: none;
    }
}
@media screen and (max-width: 800px) { 
    html, body {
        font-size: 14px;
    }
    .main {
        height: auto;
        gap: 2rem;
    }
    .main__header, .main__footer, .main__content {
        width: 95%;
    }
    .main__footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .main__footer div {
        text-align: center;
        line-height: 1.5rem;
    }
    .main__header .main__wip {
        text-align: right;
        font-size: 0.75rem;
        width: 50%;
    }
    #saikar {
        display: none;
    }
    .main__content {
        height: 300px;
        background-size: cover;
        flex: none;
    }
    .responsive__title {
        display: block;
    }
    .title {
        display: none;
    }
    .main__footer__mentions .sub-aside {
        padding-bottom: 0;
        text-align: center;
    }
    .title__header {
        text-align: center;
    }
    .main__content img {
        left: calc(50% - 4.25rem);
        width: 1.75rem;
    }
}
