* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0s;
    font-family: 'HarmonyOS Sans SC';
}

body {
    /* background: linear-gradient(80deg, rgb(209, 235, 216), rgb(192, 226, 236), rgb(209, 212, 235)); */
    background-color: rgb(233, 241, 245);
    background-attachment: fixed;
    font-weight: normal;
    margin: 0;
}

.logo {
    transition: rotate 0.5s;
}

.logo:hover {
    rotate: -10deg;
}

.fixbox {
    position: fixed;
    right: 2vw;
    top: 2vw;
    border-radius: 2vw;
    /* background: linear-gradient(120deg, rgb(25, 230, 225), rgb(177, 54, 240)); */
    background-color: #ffffff;
    color: #555555;
    font-weight: lighter;
    text-align: center;
    padding: 1vw;
    box-shadow: 0 0 1vw 0 rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.fixbox h1 {
    font-size: 1.2vw;
    font-weight: normal;
    color: #1e21df;
    margin-bottom: 1vw;
}

.fixbox p {
    font-size: 1vw;
}

.navbar {
    display: flex;
    flex-flow: row nowrap;
    flex: none;
    justify-content: center;
    width: 100%;
    padding: 1vw 0;
    margin-bottom: 4vw;
    text-align: left;
}

.navbar a {
    text-decoration: none;
    color: white;
    width: fit-content;
    border-radius: 2vw;
    margin: 0 1vw;
}

.navbutton {
    display: flex;
    flex-flow: row nowrap;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 16vw;
    height: 7vw;
    border-radius: 3vw;
    background-color: rgb(196, 205, 223);
    color: #000;
    transition: transform 0.5s;
}

.navbutton:hover {
    transform: scale(105%);
}

.navtext {
    display: block;
    margin-left: 1vw;
}

.pinbox {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.container {
    position: absolute;
    left: 25vw;
    background-color: #ffffff;
    color: #555555;
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1vw;
    margin-bottom: 1vw;
    border-radius: 2vw;
    padding: 0;
    font-size: 1vw;
}

.container h1 {color: #000;}
.container h2 {color: #000;}

.container2 {
    /* background: linear-gradient(120deg, rgb(106,136,233), rgb(177, 54, 240)); */
    background-color: #ffffff;
    text-align: center;
    color: #555555;
    width: 40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1vw;
    margin-bottom: 4vw;
    border-radius: 2vw;
    padding: 0;
    font-size: 1vw;
    user-select: text;
}

.container2 h1 {color: #000;}
.container2 h2 {color: #000;}

.container2 th {
    border: solid 0.2vw black;
    height: 3em;
    padding: 0 1vw;
}

.container2 td {
    border: solid 0.2vw black;
    height: 3em;
    padding: 0 1vw;
}

.container3 {
    left: 25vw;
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.8) !important;
    width: 50vw;
    min-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    border-radius: 40px;
    padding: 40px;
}
.container3 p {
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
}
.container3 h1 {color: #000;}
.container3 h2 {color: #000;}

.container3 img {width: 32px; height: 32px; position: relative; top: 5px; margin-right: 10px;}

.container3 code {border-radius: 20px; margin-top: 20px;}

.showtext {
    text-transform: uppercase;
    margin: 0 20vw;
    font-size: 3vw;
    font-weight: lighter;
    padding-bottom: 4vw;
}

footer {
    background-color: rgb(5,7,15);
    color: rgb(232,240,249);
    font-weight: lighter;
    font-size: 0.8vw;
}

footer a {
    color: rgb(232,240,249);
}

.flexbox {
    height: fit-content;
    display: flex;
    flex-flow: row nowrap;
    flex: none;
}

.iconbox {
    width: 30vw;
    height: 2vw;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.icon {
    background-image: url('/smooscroll-white.svg');
    width: 2vw;
    height: 2vw;
    background-repeat: no-repeat;
    background-size: contain;
}

.icontext {
    margin-left: 0.5vw;
    color: white;
    display: inline-block;
    font-size: 1.2vw;
    font-weight: normal;
}

.navigate {
    width: 10vw;
    height: fit-content;
}

.navigate h1 {
    font-size: 0.9vw;
    font-weight: normal;
    margin-bottom: 1vw;
}

.navigate a {
    display: block;
    font-size: 1vw;
    text-decoration: none;
    margin-bottom: 0.4vw;
}

.navigate a:hover {
    text-decoration: underline;
}

.line {
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgb(255, 255, 255);
}