* {
    margin: 0;
    padding: 0;
}

:root {
    --main-black: #000000;
    --hover-black: #111111;
    --main-color: #EC9A29;
    --main-white: #EDEDED;
}

a {
    text-decoration: none;
}

body {
    height: calc(100vh - 50px);
    box-sizing: border-box;
    background-color: var(--main-black);
    color: var(--main-white);
}

main.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    height: 100%;
}

.hero__content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero__content__title {
    font-size: 2rem;
    font-family: 'Krona One', sans-serif;
}

p.hero__content__description {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.featured_title {
    color: var(--main-color);
    /* background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.hero__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.hero__links__title {
    font-family: 'Krona One', sans-serif;
    font-size: 1rem;
}

.hero__buttons {
    background-color: var(--main-black);
    border: solid 1px var(--main-color);
    color: var(--main-color);
    width: 280px;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: .5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;

    display: flex; 
    gap: .5rem;
    align-items: center;
    justify-content: center;
    transition: .3s all ease-in-out;
}

.hero__buttons:hover {
    background-color: var(--hover-black);
    border: solid 1px transparent;
}

.hero__image {
    border-radius: .5rem;
    border-radius: 50%;
}

footer {
    color: var(--main-black);
    background-color: var(--main-color);
    background: linear-gradient(90deg, rgba(255,148,0,1) 0%, rgba(236,154,41,1) 35%, rgba(255,211,151,1) 100%);
    
    height: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: var(--main-black);
    font-weight: 600;
}

@media screen and (max-width: 576px) {
    body {
        height: 100%
    }

    main.hero {
        flex-direction: column-reverse;
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        height: 100%
    }

    main.hero {
        flex-direction: column-reverse;
        padding: 4rem;
    }

    .hero__content__title,
    .hero__content__description {
        text-align: center;
    }

    .hero__image {
        width: 50%;
    }
}

@media screen and (max-width: 1300px) {
    main.hero {
        flex-direction: column-reverse;
    }
}