site_itslameni/styles/style.css

72 lines
1020 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@1,200&family=Roboto:wght@300&display=swap&family=Comfortaa:wght@700&family=Rubik&display=swap');
body {
margin: 0;
font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Comfortaa', cursive;
text-shadow: 1px 0 1px #000,
0 1px 1px #000,
-1px 0 1px #000,
0 -1px 1px #000;
}
a {
text-decoration: none;
color: #0013a1;
}
img {
border-radius: 2em;
}
nav {
width: 100vw;
align-items: center;
text-align: center;
position: fixed;
background-color: #fefefe;
padding: 2mm;
}
nav a {
color: #222222;
transition: 0.5s;
}
nav a:hover {
color: #1f48ff;
}
.landing {
color: #fefefe;
background: linear-gradient(55deg, rgba(136,27,42,1) 21%, rgba(86,11,182,1) 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
text-align: center;
padding: 1em;
}
.active {
font-size: 1.5em;
}
.landing img {
width: auto;
max-width: 10em;
}