/*Have at least one stylesheet file of your own creation, styles.css, which uses at least five (5) different CSS selectors
(e.g. tag (example), class (.example), or ID (#example)),
and within which you use a total of at least five (5) different CSS properties, such as font-size, or margin;*/

html, body{
    background-color: #f2f2f2;
}

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

h1 {

    margin-top: 0;
    margin-bottom: 0;
}

h4 {
    font-weight: 200;
    letter-spacing: 0.08em;
}

a:hover {
  color: inherit;
  text-decoration: none;
  border-bottom:0.5px dotted;
}

.container {
    padding:0;
    margin:0;
}

.row {
    background: transparent;
    margin: 0px;
}
.down {
    vertical-align: bottom;
}

.huge {
    font-size: 13vw;
    align-self: flex-start;
    margin-top: -6%;
    font-weight: bold;
    word-wrap: break-word;
}

.big {
    font-size: 8vw;
    align-self: flex-start;
}
