@font-face{
    font-family: "Dongle";
    font-weight: 500;
    src: url("../fonts/Dongle/Dongle-Regular.ttf");
}

@font-face{
    font-family: "Dongle-Light";
    font-weight: 400;
    src: url("../fonts/Dongle/Dongle-Light.ttf");
}

@font-face{
    font-family: "Dongle-Bold";
    font-weight: 700;
    src: url("../fonts/Dongle/Dongle-Bold.ttf");
}

@font-face{
    font-family: "Parisienne";
    font-weight: 400 500;
    src: url("../fonts/Parisienne/Parisienne-Regular.ttf");
}

 :root {
        --sand: #EAB595;
        --peach: #D97F81;
        --rose: #AE6378;
        --aubergine: #79616F;
        --olive-dark: #212727;
        --olive-dark-transparent: #343d3db6;
        --olive:#7F9781;
        --olive-transparent:#7f9781a7;

        --white: hsl(0, 0%, 100%);
        --off-white: hsl(0, 0%, 89%);
        --gray-light:hsl(0, 0%, 75%);
        --gray-dark:hsl(0, 0%, 32%);
        --black: hsl(0, 0%, 0%);

        --font-size-reg: 1.125rem;
        --font-size-m: 2.25rem;
        --font-size-l: 3rem;
        --font-size-xl: 4rem;
    }

header {
    position:relative;
    font-family: "Parisienne";
    font-size: var(--font-size-l);
    height: 120px;
    align-content: end;
    color: var(--white);
    padding-left: 200px;
    padding-bottom: 0;
}

body {
    font-family: "Dongle", sans-serif;
    background-color: var(--olive-dark);
    align-content:center; 
    margin:0;  
}

.background_container{
    background-image: url("../images/background_picture.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 75vh;
    width: 80%;
    height: 100%;
    margin:0 auto;
    border-radius: 22px;
    align-items: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

  img {
    border-radius: 22px;
  }  
   
    
.div_description{
    font-family: "Dongle", sans-serif;
    line-height: 1;
    font-size: var(--font-size-m);
    color: var(--white);
    text-align:lefts;
    max-width: 600px;
    background-color: var(--olive-transparent); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

}

.div_construction{
    font-family: "Dongle", sans-serif;
    font-size: var(--font-size-m);
    color: var(--white);
    max-width: 600px;
    max-height: 100px;
    background-color: var(--olive-dark-transparent); 
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 30px;

}

h1 {
    padding: 32px;
    margin: 0;
    font-weight: 500;
}

img {
    max-width: 100%;
    display: block;
}

a:link{
    color:var(--off-white);
    text-decoration: none;
}

a:hover{
    color: var(--gray-dark);
    text-decoration: solid;
}

a:visited {
    color: var(--off-white);

}

footer{
    background-color: #7F9781;
    font-size: var(--font-size-reg);
    text-align: center;
    
    color: var(--off-white);
    padding: 2.5rem;
    text-decoration:none;    
}

.footer__social >a  {
    padding: 5px;
    align-items: center;
}





















