@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-bg-primary: #3c3c3c;
    --transparent: hsla(0,0%,100%,0);
    --color-border: hsla(0,0%,100%,.08);
    --color-text-primary: #f7f8f8;
    --color-brand-bg: #ffffff;
    --color-brand-text: #fff;
    --color-text: rgb(212, 212, 212);
    --color-brand-bg: #c60202;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
  }

html, body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    background: var(--color-bg-primary);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.wrapper {
    position: relative;
    z-index: 0;
}

.page-content {
    padding-bottom: 100px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #fff;
    
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}


a {
    text-decoration: none;
    color: #fff;
}

i {
    position: relative;
    top: 1.5px;
}

.divider {
    width: 100%;
    height: 1px;
    margin: 75px 0;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
}


@media(max-width: 900px) {
    .container {
        padding: 2em;
    }
}