@charset "UTF-8";

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html,
body,
div,
header,
footer,
nav,
main,
section {
    box-sizing: border-box;
    /* border: solid black 1px; */
}

body {
    margin: 20px 30px;
    background-color: orange;

}

a {
    text-decoration: none;
}

header {
    background-color: white;
    text-align: center;
    height: min-content;
    margin: 0;
    padding-right: 60px;
    padding-left: 60px;
}

main p {
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

footer p {
    text-align: center;
}

h1 {
    margin-left: 70px;
    font-size: 1.5rem;
    font-family: "Raleway", sans-serif;
    font-weight: normal;
    font-style: normal;
}























