@font-face {
    font-family: 'Belinda';
    src: url('../fonts/Belinda-Font/belinda.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-primary: #fff;
    --color-blue: #7293a5;
    --color-dark-blue: #3873A6;
    --color-cyan-blue: #04F2F2;
    --color-grey: #D2D5DA;
    --color-black: #262626;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Aether', sans-serif;
    --font-italic: 'Belinda';
}

/* Reset + Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 0;
    font-family: 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
    background: url('../images/marble.avif') no-repeat fixed center;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
}

/* General Layout -------------------------------*/
section,
header,
footer {
    text-align: center;
}

section img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 0 auto;
    display: block;
}

h1,
h2 {
    margin-bottom: 1rem;
    font-family: var(--font-body);
    line-height: 12vw;
}

h1 {
    font-size: clamp(1.3rem, 5vw, 15rem);
    line-height: 9vw;
    padding: 1rem;
}

h2 {
    font-size: clamp(2.9rem, 10vw, 15rem);
    margin: 10px 0 0 0;
}


span {
    font-family: var(--font-italic);
    font-weight: 100;
}

p {
    line-height: 20px;
}

/* ----------------------------------------------------------- 
/* btns 
/* ----------------------------------------------------------- */
a, button {
    color: var(--color-dark-blue);
    font-weight: 400;
    text-decoration: none;
    border-radius: 30px;
    background-color: white;
    font-size: clamp(.55rem, 2vw, 4rem);
    padding: .6rem .3rem;
    width: 100%;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    border: 1.5px solid var(--color-dark-blue);
}

a:hover {
    color: var(--color-dark-blue);
}

@media screen and (min-width: 300px) {
    h1 {
        font-size: clamp(2.8rem, 11vw, 15rem);
        line-height: 12vw;
    }

    a {
        font-size: clamp(1.1rem, 2vw, 4rem);
    }

    section img {
        max-width: none;
    }
}

@media screen and (min-width: 800px) {
    a {
        font-size: clamp(1.1rem, 1.5vw, 4rem);
    }
}

@media screen and (min-width:1450px) {
    a {
        font-size: 20px;
    }
}