official-site/style.css

145 lines
2.5 KiB
CSS
Raw Normal View History

@font-face {
2023-09-21 17:48:04 +00:00
font-family: 'Montserrat-Regular';
2023-09-21 17:44:02 +00:00
src: url('content/fonts/Montserrat-Regular.woff2') format('woff2'),
2023-09-21 17:53:08 +00:00
url('content/fonts/Montserrat-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
2023-09-21 17:48:04 +00:00
font-family: 'Montserrat-Black';
2023-09-21 17:44:02 +00:00
src: url('content/fonts/Montserrat-Black.woff2') format('woff2'),
url('content/fonts/Montserrat-Black.woff') format('woff');
font-weight: normal;
font-style: normal;
}
a {
text-decoration: none !important;
color: #b4b4bb;
}
body {
margin: 0;
padding: 0;
background: #25252d;
2023-09-21 17:48:04 +00:00
font-family: 'Montserrat-Regular';
color: #b4b4bb;
display: flex;
min-height: 100vh;
flex-flow: column;
}
h1, h2 {
2023-09-21 17:48:04 +00:00
font-family: 'Montserrat-Black';
font-size:clamp(2.813rem,2.813vw + 2.25rem,5.625rem);
margin: 0;
padding: 0;
}
@media (max-width: 1203px){
h1, h2, p.tagline{
text-align: center;
}
}
h3 {
2023-09-21 17:48:04 +00:00
font-family: 'Montserrat-Black';
font-size:clamp(0.813rem,0.813vw + 0.25rem,3.625rem);
}
h2 {
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 3px;
}
.tagline {
font-size: clamp (16px, 1vw, 50px);
}
.line-top {
height: 22px;
background-image: linear-gradient(145deg, #4c4dfb , #706efb);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 30px;
}
.line-bottom {
height: 22px;
background-image: linear-gradient(145deg, #706efb, #4c4dfb);
bottom: 0px;
width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 5px 0px 30px;
}
.foot {
bottom: 22px;
width: 100%;
text-align: center;
}
.main{
flex-grow: 1;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
-webkit-align-items: center;
}
.hero, .buttons {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
align-content: center;
}
.main{margin-top: 3vw;}
.buttons{margin-top: 3vw;}
.left, .right{
margin-left: 3vw;
margin-right: 3vw;
}
.button {
2023-09-21 17:53:08 +00:00
font-family: 'Montserrat-Black';
padding: 1.5vw;
margin: 2vw;
background-image: linear-gradient(145deg, #4c4dfb , #706efb);
color: #fff;
font-size: 28px;
width: 250px;
text-align: center;
border-radius: 10px;
box-shadow: 0px 0px 30px 9px rgba(0,0,0,0.3);
}
.button:hover {
background-image: linear-gradient(#25252d, #25252d);
outline-style: solid;
outline-width: 3px;
outline-color: #4c4dfb;
transition: 0.02s;
}
.about {
padding: 1vw 10vw;
}
p {
font-size: clamp(0.7rem,0.7vw + 0.25rem,3.625rem);
line-height: 1.5;
}
img {
2023-09-21 17:53:08 +00:00
max-width: 80%;
height: auto;
2023-09-21 18:03:47 +00:00
}
2023-09-21 17:44:02 +00:00
2023-09-21 18:03:47 +00:00
.face {
display: block;
margin-left: auto;
margin-right: 0;
}