/* Scrollbar Setting */
::-webkit-scrollbar {
    width: 0.2cm;
    height: 0.2cm;
}


::-webkit-scrollbar-track {
    background-color: #888888aa;
}


::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 5px;
}


/* selection Setting */
::selection {
    display: none;
}


html {
    /* Background Setting */
    width: 100%;
    background-image: linear-gradient(to bottom right, #000000, #4000ff);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: clip;
    /* cursor Setting */
    cursor: default;
}


body {
    /* Font Setting */
    font-size: 25px;
    /* Redirect Setting */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* Other Setting */
    overflow-x: clip;
}


body.load {
    opacity: 1;
}


.header {
    /* Header Setting */
    height: 50px;
    width: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    text-decoration: none;
    /* Font Setting */
    color: #ffffff;
    font-family: system-ui;
    /* Transition Setting */
    transition: all 0.5s ease;
}


.header:hover {
    /* Transition Change */
    background-color: #00000050;
}


.header button {
    /* Title of Header Setting */
    margin: 5px 5px;
    display: inline-block;
    background: none;
    border: none;
    text-decoration: none;
    vertical-align: middle;
    /* Font Setting */
    color: #808080;
    font-size: 30px;
    /* Transition Setting */
    transition: all 0.5s ease;
}


.header button:hover {
    /* Transition Change */
    color: #ffffff;
}


.homeTitle {
    /* Home Page Title Setting */
    margin: 100;
    /* Font Setting */
    color: #ffffff;
    font-size: 125px;
    text-align: center;
    font-family: system-ui;
}


.homeDescription {
    /* Font Setting */
    color: #808080;
    font-size: 45px;
    text-align: center;
    font-family: system-ui;
}


.homeButtons {
    /* Div of Button Setting */
    text-align: center;
}

.homeButtons button {
    /* Button Setting */
    width: 250px;
    height: 50px;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    margin: 5px;
    /* Font Setting */
    color: #000000;
    font-size: 35px;
    font-family: system-ui;
    /* Transition Setting */
    transition: all 0.5s ease;
}


.homeButtons button:hover {
    /* Transition Change */
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
}


.information {
    /* information Setting */
    margin-top: 50px;
}


.information .q {
    /* Q1 Setting */
    text-align: center;
    /* Font Setting */
    color: #ffffff;
    font-size: 45px;
    font-family: system-ui;
}


.information .ans-1 {
    /* Ans-1 Setting */
    display: block;
    text-align: center;
    /* Font Setting */
    color: #888888;
    font-size: 45px;
    font-family: system-ui;
}


.information .ans-1 img {
    width: 90%;
}


.information .team {
    /* Q1 Setting */
    text-align: center;
    /* Font Setting */
    color: #ffffff;
    font-size: 45px;
    font-family: system-ui;
}


.information .ans-2 {
    /* Ans-1 Setting */
    display: block;
    text-align: center;
    /* Font Setting */
    color: #888888;
    font-size: 45px;
    font-family: system-ui;
}


.redirect {
    /* Redirect Setting */
    display: block;
    text-align: center;
    /* Font Setting */
    color: #ffffff;
    font-size: 35px;
    font-family: system-ui;
}


.redirect button {
    /* Button Setting */
    width: 250px;
    height: 50px;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    margin: 5px;
    /* Font Setting */
    color: #000000;
    font-size: 35px;
    font-family: system-ui;
    /* Transition Setting */
    transition: all 0.5s ease;
}


.redirect button:hover {
    /* Transition Change */
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
}



.footer {
    /* Footer Setting */
    height: 35px;
    width: 101%;
    position: fixed;
    text-align: center;
    bottom: 0;
    left: 0;
    text-decoration: none;
    /* Font Setting */
    color: #808080;
    font-family: system-ui;
    /* Animation */
    animation-iteration-count: 1;
    animation-fill-mode: both;
}