:root {
    --Color1: #720f11;
}
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #2a2e2d;
    overflow-x: hidden;
}
#img-back {
    position: absolute;
    z-index: 1;
    aspect-ratio: 16 / 9;
    width: 100vw;
    height: 100vh;
}
#Overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#00000000 80%, #2a2e2d 100%);
    z-index: 1;
}
#Header-list {
    position: absolute;
    list-style: none;
    z-index: 2;
    display: flex;
    overflow: hidden;
    margin: 1.5vw;
    box-sizing: border-box;
    width: calc(100% - 3vw);
    background-color: var(--Color1);
    box-shadow: 0px 0px 11px 1px #000000c0;
}
#Header-list li a {
    font-family: "Roboto", sans-serif;
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    cursor: pointer;
}
#Header-list li:hover{
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background-color: rgba(119, 59, 60, 0.699);
}
#Header-list :last-child {
    margin-left: auto;
    margin-right  : 1vw;
}
#Title {
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    line-height: 14vh;
    font-size: 5vw;
    font-family: "Anton", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1vw;
    z-index: 2;
}
#slogan {
    position: absolute;
    z-index: 2;
    top: 60vh;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 300;
    color:white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1vw;
    letter-spacing: 0.3vw;
    opacity: 0.7;
}
#Floating-pill {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 80%;
    transform: translate(-50%,-50%);
    width: 12vw;
    height: 9vh;
}
#Floating-pill button{
    width: 97%;
    height: 97%;
    color: white;
    cursor: pointer;
    background-color: var(--Color1);
    border: 6px solid var(--Color1);
    padding: 2%;
    background-clip: content-box;
    font-size: 1.5vw;
}
#Floating-pill:hover{
    width: 13vw;
    height: 8vh;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
#scroll-down {
    z-index: 2;
    position: absolute;
    top: 92vh;
    left: 50vw;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: whitesmoke;
    cursor: pointer;
}
#scroll-down svg {
    filter: invert(1);
}
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#Under-Area {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100vw;
    height: 70vh;
}
.Person-Portrait {
    width: 40vh;
    height: 40vh;
}
.carousel-slide {
    width: 80vw;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#carousel {
    width: 80vw;
    height: 50vh;
    max-width: 80vw;
    max-height: 50vh;
}
#team-introduction {
    width: 100vw;
    height: 49vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background: linear-gradient(#2a2e2d 0%, #313534 10%, #313534 75%, #2a2e2d 100%);
}
.person-description {
    width: 35%;
    height: 50vh;
    text-wrap: wrap;
    margin-left: 1vw;
}
.person-description h3{
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    #img-back {
        height: 100dvh;
    }
    #Title {
        font-size: 9vw;
        line-height: 9vh;
        top: 45dvh;
        text-align: left;
        left: 70vw;
    }
    #Floating-pill {
        width: 30vw;
        left: 65vw;
    }
    #Floating-pill button {
        font-size: 4vw;
    }
    #slogan {
        font-size: 3vw;
        top: 56dvh;
        left: 65vw;
        width: max-content;
    }
    .Person-Portrait {
        width: 30lvh;
        height: 30lvh;
    }
    #Under-Area {
        height: 100lvh;
    }
    #carousel {
        width: 100vw;
        max-width: 100vw;
        height: 90lvh;
    }
    .carousel-slide {
        flex-direction: column;
        align-items: center;
        width: 100vw;
        height: 70lvh;
    }
    .person-description {
        width: 80vw;
        height: 50lvh;
    }
}