
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;600;&display=swap');
:root {
    --headings: #333333;
    --text: #666666;
    --violet: #d2d2f9;
    --tirkiz: #ccfcff;
    --lightblue: #e1fefa;
    --orange: #ffe3d3;
    --pink: #ffe5f9;
    --gray: #e8e8fc;
    --blue: #1c1ce1;
    --white: #fff;
    --lightgray: #fcfcfc;
    --fontSize: 16px;
    --padding: 50px 0;
    --transition: .3s ease;
    --fontFamily: 'Roboto', sans-serif;
}
/*************
basic styles
*************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    color: var(--text);
    line-height: 1.6em;
}
h1, h2, h3, h4, h5 ,h6 {
    color: var(--headings);
}
.container {
    max-width: 1504px;
    width: 100%;
    margin: auto;
}
.flexBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.flexCenter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}
.flexAround {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.flexEvenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
ul {
    list-style: none;
}
a:hover {
    transition: var(--transition);
}
button {
    padding: 10px;
    font-size: .9rem;
    cursor: pointer;
    border-radius: 5px;
    transition: .1s ease;
    font-weight: 300;
    letter-spacing: 1px;
}
.btnBlue {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
    margin-right: 10px;
}
.btnBlue:hover {
    border: 1px solid var(--blue);
    box-shadow: 3px 3px var(--violet);
    opacity: .9;
}
.btnTransparent {
    background: transparent;
    border: 1px solid var(--headings);
}
.btnTransparent:hover {
    border: 1px solid var(--blue);
    box-shadow: 3px 3px var(--violet);
    color: var(--blue);
}
h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
/*************
nav
*************/
nav {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 20px 10px 0;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: #515151;
    text-decoration: none;
    font-weight: 400;
}
nav ul li:hover a, nav ul li:hover i {
    color: var(--blue);
}
nav ul li a i {
    color: #b2b2b2;
}
nav input {
    border: 1px solid #bfbfbf;
    border-radius: 3px;
    padding: 15px;
}
nav form i {
    position: relative;
    left: -30px;
}
nav article a {
    color: var(--headings);
    margin-left: 20px;
    text-decoration: none;
}
nav article i {
    font-size: 1.3rem;
}
nav article a:hover  {
    color: var(--blue);
}
nav article a:last-child i {
    margin-right: 10px;
    color: var(--text);
}
nav article a:last-child:hover .fa-globe {
    color: var(--blue);
    transform: scale(1.3);
    transition: var(--transition);
    transform-origin: right center;
}
/*************
header
*************/
header {
    background-image: url(img/hero.png);
    height: 440px;
    background-position: center;
    background-size: cover;
}
/*************
welcome
*************/
.welcome {
    text-align: center;
    padding: var(--padding);
}
/* .typed-cursor {
    display: none;
} */
.welcome h4{
    font-weight: 300;
    margin-bottom: 30px;
}
.welcome h1 {
    font-size: 2.5rem;
}
.welcome p {
    padding: 30px;
    font-size: 1.2rem;
}
/*************
getStarted
*************/
.getStarted {
    padding: var(--padding);
    background: var(--lightgray);
}
.getStarted img {
    width: 100%;
}
.getStarted article {
    flex: 0 0 48%;
}
.getStarted article:first-child {
    padding: 120px;
}
.getStarted p {
    font-size: 1.2rem;
    line-height: 1.9rem;
}
/*************
cards
*************/
.cards {
    padding: 50px;
    background: var(--lightgray);
    border-bottom: 1px solid var(--headings);
}
.cards a {
    flex: 0 0 49%;
    text-decoration: none;
    border: 1px solid var(--headings);
    box-shadow: 4px 4px var(--violet);
    min-height: 430px;
    transition: .1s ease-in-out;
    margin-bottom: 30px;
    overflow: auto;
}
.cards a:hover {
    box-shadow: 0 0 30px lightgray;
    transform: scale(102%);
    border-radius: 3px;
    background: #f7f7f7;
}
.cards article .img {
    background: rgba(0, 0, 0, 0) radial-gradient(46.28% 66.31% at 66.95% 58.35%, rgb(230, 230, 247) 0%, rgb(231, 237, 250) 50%, rgb(233, 251, 250) 100%) repeat scroll 0% 0%;
    min-height: 260px;
}
.cards .text {
    padding: 30px 30px 0 30px;
}
.cards h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.cards p {
    color: var(--text);
    font-weight: 400;
}
/*************
colors
*************/
.colors {
    border-bottom: 1px solid var(--headings);
    padding: var(--padding);
}
.colors img {
    width: 100%;
}
.colors article {
    flex: 0 0 49%;
}
.colors .text {
    padding: 100px;
}
.colors p {
    padding-bottom: 30px;
    font-size: 1.2rem;
}
.colors h2 {
    font-family: serif;
    font-weight: 600;
}
.colors:nth-child(odd) .text {
    order: -1;
}
/* .colors:nth-child(odd) article:nth-child(1) {
    order: 0;
}
.colors:nth-child(odd) article:nth-child(2) {
    order: -1;
} */
.tirkiz {
    background: var(--tirkiz);
}
.orange {
    background: var(--orange);
}
.lightblue {
    background: var(--lightblue);
}
.pink {
    background: var(--pink);
}
.gray {
    background: var(--gray);
}
/* nastavak 3 deo*/
.gray article:first-child {
    border: 1px solid var(--headings);
    box-shadow: 4px 4px var(--violet);
}
.gray article:first-child {
    flex: 0 0 45%;
    background: var(--white);
}
.gray article:last-child {
    flex: 0 0 45%;
}
.gray .head {
    border-bottom: 1px solid var(--headings);
    padding: 15px 10px;
    background: var(--lightgray);
}
.gray .head .color {
    display: inline-block;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-right: 7px;
}
.gray .head .color:nth-child(1) {
    background: #d46666;
}
.gray .head .color:nth-child(2) {
    background: #ffe78e;
}
.gray .head .color:nth-child(3) {
     background: #6fc4a0;
}
.gray p {
    padding-bottom: 0;
}
.gray article:last-child p {
    padding-bottom: 30px;
}
.gray a {
    text-decoration: none;
    border-bottom: 1px solid lightgray;
    padding: 15px;
    display: block;
}
.gray a:hover {
    background: var(--violet);
}
.gray a h5 {
    color: #3a3a3a;
    font-size: 1rem;
    font-weight: 300;
}
.gray a p {
    color: #787878;
    font-size: .9rem;
    font-weight: 300;
}
/*************
etheriumToday
*************/
.etheriumToday {
    padding: 50px 30px;
    background: var(--lightgray);
}
.etheriumToday .col {
    flex: 0 0 50%;
    border: 1px solid var(--headings);
    min-height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.etheriumToday h2 + p {
    margin-bottom: 50px;
    font-size: 1.2rem;
}
.etheriumToday .col h3 {
    font-weight: 400;
    font-size: 1.3rem;
    padding-bottom: 20px;
}
.etheriumToday .col span {
    font-size: 4rem;
    color: var(--headings);
}
.etheriumToday .col a {
    color: var(--text);
    display: inline-block;
    border: 1px solid var(--headings);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    top: -7px;
    left: 7px;
}
.etheriumToday .col a:hover {
    border: 1px solid var(--blue);
    color: var(--blue);
}
/*************
exploreEtherium
*************/
.exploreEtherium {
    padding: 50px;
}
.exploreEtherium h2 {
    padding: 50px 0;
}
.exploreEtherium a {
    flex: 0 0 32%;
    text-decoration: none;
    border: 1px solid var(--headings);
    box-shadow: 4px 4px var(--violet);
    min-height: 430px;
    transition: .1s ease-in-out;
    margin-bottom: 30px;
    overflow: auto;
}
.exploreEtherium a:hover {
    box-shadow: 0 0 30px lightgray;
    transform: scale(102%);
    border-radius: 3px;
    background: #f7f7f7;
}
.exploreEtherium article .img {
    background: rgba(0, 0, 0, 0) radial-gradient(46.28% 66.31% at 66.95% 58.35%, rgb(230, 230, 247) 0%, rgb(231, 237, 250) 50%, rgb(233, 251, 250) 100%) repeat scroll 0% 0%;
    min-height: 260px;
}
.exploreEtherium .text {
    padding: 30px 30px 0 30px;
}
.exploreEtherium h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.exploreEtherium p {
    color: var(--text);
    font-weight: 400;
}
/*************
contribute
*************/
.contribute {
    background: linear-gradient(to right,var(--gray), var(--gray),var(--gray), var(--tirkiz));
    border-radius: 4px;
}
.contribute article {
    padding: 50px 80px;
}
.contribute img {
    width: 100%;
}
.contribute article:first-child {
    flex: 0 0 55%;
}
.contribute article:last-child {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 40%;
}
.contribute p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
}
/*************
footer
*************/
footer {
    padding: var(--padding);
}
footer article:first-child a {
    color: #b2b2b2;
    font-size: 2rem;
    margin-left: 10px;
}
footer article:first-child a:hover {
    color: var(--blue);
}
footer article:last-child div {
    flex: 1;
    margin-top: 30px;
}



