* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }


  /* RESET */

  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: 62.5%;
    font: inherit;
    font-family: arial,sans-serif;
    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;
}

/* end of reset */



#viewport {
    width: 100%;
    height: 100vh;
    position: fixed;
}

#header {
    display: block;
    height: 5rem;
    width: 100%;
}

#nav-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin: 1.5rem 0rem 0 0rem;
}

ul {
    margin: 0 2rem 0 1.5rem;
}

ul.left_side {
    width: 6rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

ul.right_side {
    width: 17rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;    
}

ul.right_side img {
    background-color: black;
    opacity: 0.5;

}

ul.right_side img:hover {
    opacity: 1.5;
}

#nav-bar a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}


.right_side button {
    background: #4285f4;
    outline: none;
    font-weight: bold;
    border: 1px solid #4285f4;
    color: #fff;
    border-radius: 2px;
    width: 5rem;
    height: 2rem;
    font-size: medium;
    margin-top: -0.5rem;
    cursor: default;
    user-select: none;
}

#main {
    height: 77%;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20rem;
    margin-top: 4rem;
}

.center img {
    display: flex;
    margin-bottom: 1rem;
}

#searchbar {
    width: 37rem;
    height: 3rem;
    background: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
}

#searchbar:hover {
    box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
    border-color: rgba(223,225,229,0);
}

.searchfield {
    position: relative;
    width: 36rem;
    margin-right: 0rem;
    border: none;
}

#searchbar img {
    margin: 1rem 1rem 2rem 1rem;
}

#search_buttons {
    width: 19rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}


.search {
    background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    color: #5F6368;
    font-family: arial,sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.search:hover {
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-color: #f8f8f8;
    border: 1px solid #c6c6c6;
    color: #222;
}

#footer {
    width: 100%;
    height: 5rem;
    display: inline-block;
}

.footer_bar {
    display: flex;
    height: 3rem;
    background: #f2f2f2;
    justify-content: space-between;
    border-top: 1px solid #e4e4e4;
}

.footer_bar a {
    text-decoration: none;
    color: #5f6368;
    white-space: nowrap;
    font-size: 0.9rem;
}

.ft_links {
    display: flex;
    width: 20rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ft_links a:hover {
    text-decoration: underline;
}


