@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-primary-color: #c7252c;
    --theme-secondary-color: #ffc808;
    --menu-icon-color: white;
    --alt-font: "Manrope", sans-serif;
    font-optical-sizing: auto;
    --primary-font: "Poppins", serif;
}

*,
* button:focus {
    outline: 0;
    margin: 0;
}

html {
    font-size: 16px;
    scroll-padding-top: 150px;
}

body {
    position: relative;
    font-family: var(--primary-font);
    text-decoration: none;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden !important;
}

/* ::selection {
    background-color: #ffc808;
    color: white;
} */

main {
    position: relative;
    min-height: 100vh;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 700;
    color: black;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.375rem;
}

h2 {
    font-size: 3.438rem;
}

h3 {
    font-size: 2.375rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.35rem;
}

h6 {
    font-size: 1.15rem;
}

p {
    font-size: 1.4rem;
    font-family: var(--alt-font);
}

b,
strong {
    font-weight: 700;
}

.alt-font {
    font-family: var(--alt-font);
}

.primary-font {
    font-family: var(--primary-font);
}

.text-anime {
    position: relative;
    display: inline-block;
}

.letter {
    display: inline-block;
    transform-origin: 0 100%;
}


h1{
    font-size: 6rem;
    color: #1a1c1d;
}

h6{
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 4rem;
    text-transform: uppercase;
}

.cover-background{
    min-height: 700px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    background-image: url(../images/90667.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 20px;
}

.main-title{
    overflow: hidden;
    margin-bottom: 6px;
}
.main-title .letter {
    display: inline-block;
    line-height: 1.3em;
}


@media screen and (max-width: 767px) {
    h1{
        font-size: 4rem;
    }
    p {
        font-size: 1rem;
    }
    
    h6{
        font-size: 1.2rem;
    }
    
}

@media screen and (max-width: 575px) {
    h1{
        font-size: 11vw;
    }
    p {
        font-size: .9rem;
    }
    
    h6{
        font-size: 1rem;
    }
    
}
