59 lines
1007 B
CSS
59 lines
1007 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
|
|
:root {
|
|
--bg-color: #F8F8F8;
|
|
--tx-color: #2E2E2E;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
scroll-behavior: smooth;
|
|
}
|
|
a,p,h1,h2,h3 {
|
|
color: var(--tx-color);
|
|
font-family: "Quicksand";
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
}
|
|
.header_bottom_wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 15px 120px;
|
|
|
|
}
|
|
.header_bottom_wrap a {
|
|
text-decoration: none;
|
|
padding: 0 10px;
|
|
}
|
|
.block_wrap {
|
|
|
|
padding: 0 120px;
|
|
margin: 0 0 80px 0;
|
|
}
|
|
.logo {
|
|
width: 70%;
|
|
}
|
|
.header_top_wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 5px 120px;
|
|
opacity: 50%;
|
|
}
|
|
|
|
.bottom_wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 110%;
|
|
}
|
|
.bottom_wrap h2 {
|
|
color: #2E2E2E !important;
|
|
}
|
|
.bottom_logo {
|
|
width: 10%;
|
|
margin: auto;
|
|
margin-bottom: 20px;
|
|
} |