@import url("./variables.css");
|
|
|
|
|
|
*{
|
|
padding: 0; margin: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
html, body{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
|
|
header{
|
|
width: 100%;
|
|
height: 7vh;
|
|
background-color: var(--second-color);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 1em 1.2em;
|
|
align-items: center;
|
|
border-bottom: 2px solid var(--third-color);
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
header > .header__menu > ul{
|
|
display: flex;
|
|
gap: 1em;
|
|
}
|
|
|
|
header > .header__logo > a > img {
|
|
width: 50px;
|
|
}
|
|
|
|
header > .header__menu > ul > li > a{
|
|
color: var(--third-color);
|
|
font-weight: bold;
|
|
transition: all .2s ease-in-out;
|
|
}
|
|
|
|
|
|
main{
|
|
min-height: 85vh;
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
footer{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
border-top: 2px solid var(--third-color);
|
|
color: var(--third-color);
|
|
padding: 2em 1em;
|
|
background-color: var(--second-color);
|
|
}
|
|
|
|
.container{
|
|
width: 100%;
|
|
min-height: 82vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
|