/* Imports */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: 'koliko';
    src: url('../fonts/koliko-Regular.ttf');
}

@font-face {
    font-family: 'koliko-light';
    src: url('../fonts/koliko-Light.ttf');
}

@font-face {
    font-family: 'koliko-bold';
    src: url('../fonts/koliko-Bold.ttf');
}

/* Variables */

:root {
    /**--blue-color: #304EF4;*/
    --blue-color: #1735DB;
    --white-color: #FFFFFF;
}

.blue {
    color: var(--blue-color);
}

.white {
    color: var(--white-color);
}

.black {
    color: black;
}

h1 {
    font-family: koliko;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

h2 {
    font-family: koliko;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h3 {
    font-family: koliko;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

h4 {
    font-family: Outfit, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

h5 {
    font-family: Outfit, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

p {
    font-family: Outfit, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Global */

html {
    scroll-behavior: smooth;
}

body{
    background-color: var(--white-color);
    background-size: auto;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

header {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-items: center;
    padding: 250px 20%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    transition: ease-in 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background: #304EF4;
}

/* Texts */

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style-type: none;
    margin-block-start: 0;
    padding-inline-start: 0;
    margin-block-end: 0;
}

/* Buttons */

.button-primary {
    display: flex;
    padding: 8px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--blue-color);
    color: var(--white-color);
    font-family: Outfit, serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    border: #FFFFFF 1px solid;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    cursor: pointer;
}

.button-primary:hover {
    background: #304EF4;
    color: #FFF;
}

.button-secondary {
    display: flex;
    padding: 8px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--white-color);
    color: var(--blue-color);
    font-family: Outfit, serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    border: #FFFFFF 1px solid;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    cursor: pointer;
}

.button-secondary:hover {
    background: transparent;
    color: #FFF;
}

@media screen and (max-width: 1500px) and (min-width: 600px) {
    h1 {
        font-size: 3.5em;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1.5rem;
    }
    h5 {
        font-size: 1.25rem;
    }

    .content {
        padding: 250px 15%;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1rem;
    }
    h5 {
        font-size: 0.75rem;
    }

    .content {
        padding: 50px 15%;
    }
}