* {
    padding: 0;
    margin: 0;
}

*,
 ::before,
 ::after {
    box-sizing: border-box;
}

body {
    line-height: 1.3;
    font-family: Calibre, San Francisco, SF Pro Text, -apple-system, system-ui, BlinkMacSystemFont, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    color: rgb(230, 241, 255);
    margin: 0px 0px 10px;
    line-height: 1.1;
}

.h-inherit {
    height: inherit;
}

.w-inherit {
    width: inherit;
}

.container {
    padding: 0px 40px;
}


/* z-index */

.z-index {
    z-index: 3;
}


/* Text */

.text-primary {
    color: rgb(100, 255, 218);
    margin: 0px 0px 20px 3px;
    font-size: 16px;
    font-weight: normal;
}

.text-secondary {
    font-size: 80px;
    line-height: 1.1;
    /* color: rgb(136, 146, 176); */
}

.text-paragraf {
    line-height: 2em;
}


/* Center */

.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.center-y {
    top: 50%;
    transform: translateY(-50%);
}


/* Colors primary */


/* .bg-primary {
  background-color: #0a192f;
} */

.t-color-primary {
    color: rgb(204, 214, 246)
}

.txt-white {
    color: #FFF;
}


/* Position */

.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-fixed {
    position: fixed;
}

.position-absolute {
    position: absolute;
}


/* Background image */

.bg-image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
    background-image: url();
}


/* Font-size */

.txt-size-13 {
    font-size: 13px;
}

.txt-size-14 {
    font-size: 14px;
}

.t-size-50 {
    font-size: 40px;
}

.t-size-80 {
    font-size: 80px;
}


/* Font family*/

.font-primary {
    font-family: SF Mono, Fira Code, Fira Mono, Roboto Mono, Lucida Console, Monaco, monospace;
}


/* Padding */

.p-5 {
    padding: 1em;
}

.pt-5 {
    padding-top: 1em;
}

.pr-55 {
    padding-right: 5em;
}

.p-2 {
    padding: .4em;
}


/* Display */

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.flex-direction-c {
    flex-direction: column;
}

.flex-direction-r {
    flex-direction: row;
}


/* Margin */

.ml-10 {
    margin-left: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-5 {
    margin-top: 1em
}

.m-0-auto {
    margin: 0 auto;
}


/* border */

.btn-border-primary {
    border-style: solid;
    border-width: 1px;
    ;
    border-radius: 3px;
    padding: 0.75rem 1rem;
    line-height: 1;
}


/* Flex */

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-araund {
    justify-content: space-around;
    justify-content: space-between;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}


/* size - width */

.w-100 {
    width: 100%;
}

.w-95 {
    width: 95%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-45 {
    width: 45%;
}

.w-40 {
    width: 40%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}

.h-100 {
    height: 100%;
}

.h-max-content {
    height: max-content;
}

@media (max-width:900px) {
    .t-size-80 {
        font-size: 70px;
    }
}

@media (max-width:700px) {
    .t-size-80 {
        font-size: 60px;
    }
}