@font-face {
    font-family: 'Stary';
    src: url('images/Stary Font.ttf');
}


:root {
    --base-color: #bf5f00;
    --text-color: #000000;
    --primary-color: #13be3e;
    --secondary-color: #01fe40;
    --nav-color: #873b0c;
    --text-color-1: #fff700;
    --outline-color-1: #fff700;
}

* { /*This is the univeral scelector*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Stary';
    color: var(--text-color);
    background-color: var(--base-color);
}

nav {
    background-color: var( --nav-color);
}

nav ul {
    display: flex; /*seting the nav list to be horizontal*/
    align-items: center; /*aligns the nav list verticlly*/
    list-style: none; /*remove the list style so no bullet points*/
    gap: 2em;
}

nav li:nth-child(2){
    margin-right: auto;
}

nav li:nth-child(4){
    margin-right: 1em;
}

.button{ /*nav anchor text*/
    text-decoration: none; /*get rid of lines*/
    color: var(--primary-color);
}

.button:hover{ /*nav anchor text*/
    color: var(--secondary-color);
}

h1{
    font-size: clamp(12px, 1vw, 16px);
}

h2{
    color: var(--text-color-1);
    font-size: clamp(12px, 1.5vw, 20px);
}

p {
    text-align: center;
    font-size: 12px;
}

.flex-container {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 2em;
    padding-right: 4em;
    gap: 4em;
}

.text-container {
    display:flex;
    gap: 2em;
    flex-direction: column;
}

.flex-horizontal-container {
    display:flex;
    gap: 4em;
    flex-direction: row;
    align-items: center;    
}

.flex-vertical-container {
    display:flex;
    gap: 2em;
    flex-direction: column;
    align-items: center;    
}

.image {
    width: clamp(475px, 80vw, 945px);
    height: clamp(270px, 45vw, 540px);
}

.small-image {
    width: clamp(200px, 40vw, 400px);
    height: clamp(150px, 30vw, 300px);
}