
body, html {
    padding: 0;
    margin: 0;
    color: white;
    background: rgba(50,100,255);
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 1000px;
}
* {
    font-family: 'REM';
}
a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 75%;
}
a:active {
    opacity: 50%;
}
.header {
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header.animate {
    background: rgba(0,0,0,0.5);
}
.logo {
    background: url(logo.png);
    background-size: cover;
    width: 30px;
    height: 30px;
}
.logotext {
    font-size: 20px;
    font-weight: 200;
    margin-left: 7.5px;
}
.hbtn {
    color: rgba(50,100,255);
    background: white;
    padding: 6px 16px;
    width: fit-content;
    border: none;
    font-size: 14px;
    border-radius: 7.5px;
    cursor: pointer;
    transition: transform 0.2s;
    margin-left: auto;
}
.hbtn:hover {
    transform: scale(1.05);
}
.hbtn:active {
    transform: scale(0.95);
}
.hbtn2 {
    margin-left: 5px;
    color: white;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
    transform: scale(1) !important;
}
.hbtn2:hover {
    background: rgba(0,0,0,0.1);
}
.hbtn2:active {
    background: rgba(0,0,0,0.5);
}
.main {
    width: calc(100% - 40px);
    height: calc(100vh - 90px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main2 {
    width: calc(100% - 60px);
    height: fit-content;
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    align-items: center;
}
.main2 .h {
    text-align: center;
}
.h {
    font-size: 40px;
    margin-bottom: 5px;
}
#hscroll {
    font-weight: bold;
}
.tcursor {
    animation: linear flash 1s infinite;
    margin-left: -15px;
    margin-right: -15px;
}
@keyframes flash {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}
.mainbtn {
    color: rgba(50,100,255);
    background: white;
    padding: 15px 25px;
    width: fit-content;
    border: none;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}
.mainbtn:hover {
    transform: scale(1.05);
}
.mainbtn:active {
    transform: scale(0.95);
}
.uses {
    background: white;
    flex-direction: column;
    display: flex;
    padding-bottom: 50px;
}
.use {
    padding: 100px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s;
}
.use.animate {
    opacity: 100;
    transform: translateY(0px);
}
.useleft {
    flex-direction: row-reverse;
    text-align: left;
}
.useright {
    flex-direction: row;
    text-align: right;
}
.graphic {
    width: 30%;
    aspect-ratio: 4 / 3;
}
.usetxt {
    width: 70%;
    color: black;
    display: flex;
    flex-direction: column;
}
.useh {
    font-size: 30px;
    font-weight: bold;
}
.used {
    font-size: 20px;
}
.footer {
    background: rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    padding: 10px;
}
.logocontainer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: auto;
    margin-bottom: -30px;
}
.ftext {
    margin: 10px;
    color: rgb(200,200,200);
    font-size: 15px;
}

@media (min-width: 1000px) {
    .uses {
        border-radius: 20px;
    }
    .header {
        border-radius: 0 0 15px 15px;
    }
    .footer {
        border-radius: 20px 20px 0 0;
    }
}
@media (max-width: 600px) {
    .use {
        flex-direction: column !important;
        padding: 10px;
    }
    .usetxt {
        text-align: center;
    }
    .graphic {
        width: 50%;
    }
}