@font-face {
    font-family: artista-pro;
    src: url('../fonts/Arista-Pro-Light-trial.ttf');
    font-display: swap;
}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: artista-pro, sans-serif;
    color: rgb(236, 236, 236);
    background-color: #242830;
    background-image: linear-gradient(to right, #000000, #010c16);
}

* {
    --default: #0f8afd;
    --page: #000000;
    --title: #e1e1e6;
    --text: #c7c7c7;
    list-style-type: none;
    text-decoration: none;
}

*:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, var(--default), #252525);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, .12) 0 3px 13px 1px;
}

.logo {
    height: 50px;
    width: 124px;
    margin: 0;
    cursor: pointer;
}

.section {
    float: left;
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    scroll-margin-top: 120px;
}

.main {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 186px);
    position: relative;
    overflow: hidden;
}

hr {
    float: left;
    box-shadow:
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 5px var(--default),
        0 0 5px var(--default),
        0 0 5px var(--default),
        0 0 5px var(--default),
        0 0 5px var(--default);
    width: calc(100% - 6px);
}

.title {
    font-size: 2.3rem;
    color: var(--title);
}

input[type="submit"] {
    font-family: artista-pro, sans-serif;
}

button {
    font-family: artista-pro, sans-serif;
    float: right;
    right: 0;
    width: 90px;
    height: 30px;
    border: none;
    border-radius: 20px;
    padding-top: 5px;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0px;
    font-weight: 600;
    line-height: 16px;
    transition: 0.5s ease-in-out;
    background-color: #ffffff;
    box-shadow:
        0 0 2px #fff,
        0 0 2px #fff,
        0 0 2px #fff,
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default);
}

button:hover {
    cursor: pointer;
    background-color: var(--default);
    color: #ffffff;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px var(--default),
        0 0 28px var(--default),
        0 0 28px var(--default),
        0 0 28px var(--default),
        0 0 28px var(--default);

}

@media screen and (max-width: 800px) {
    .title {
        font-size: 2rem;
    }
}