* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: gray;
}

ul {
    list-style: none;
}

section.main {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.main img {
    height: 400px;
}