html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    font-family: Roboto;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    box-shadow: 0 6px 6px -2px #dcdcdc;
    z-index: 999;
    position: relative;
    padding-top: 5px;
}

header img{
    width: 200px;
}

main{
    display: flex;
    justify-content: center;
    padding: 0 0 50px 0 ;
    flex-direction: column;
    align-items: center;
}

.text{
    text-align: center;
    font-size: 18px;
    line-height: 1.2em;
}
.text li{
    margin-top: 20px;
}

.carousel{
    margin-top: -60px;
    margin-bottom: -20px;
}

.button{
    width: 500px;
    border: none;
    padding: 15px 18px;
    line-height: 20px;
    color: #fefefe;
    background: #00aff0;
    min-width: 78px;
    transition: opacity .15s ease,background-color .15s ease,box-shadow .15s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 1000px;
    margin-top: 20px;
    font-weight: 700;
}

.button:hover{
    background: #0091ea;
    color: #fefefe;
}

@media only screen and (max-width: 768px) {
    .button{
        width: 90%;
    }
    main{
        padding-left: 20px;
        padding-right: 20px;
    }
     .text{
        font-size: 17px;
    }
  }