website/old/style.css

35 lines
469 B
CSS

@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,800');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: url('bg.jpg') no-repeat center fixed;
background-size: cover;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
text-align: center;
color: #fff;
}
h1{
margin-top: 40vh;
font-size: 5em;
font-weight: 800;
}
h3{
font-size: 2.5em;
font-weight: 600;
}
span{
font-size: 1.2em;
font-weight: 500;
}