*{
    margin: 0;
    padding: 0;
    outline: none;
}

:root {
    --text-color: #000;
    --background-color: #ecece7;
    --header-bg-color: #ecece7;
    --header-text-color: #000;
    --section-bg-color: #ecebe6;
    --alt-section-bg-color: #fff;
}  

html{
    scroll-behavior: smooth;
    height: 100vh;
}

body{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: var(--text-color);
    background-color: var(--background-color);
    text-align: center;
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding:0 5%;
}

img{
    max-width: 100%;
    width: 800px;
    margin: 50px 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

h1{
    font-size: 50px;
}

@media(max-width:500px){
    h1{
        font-size: 30px;
    }
}