63 lines
800 B
SCSS
63 lines
800 B
SCSS
|
|
html {
|
||
|
|
height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
background-color: rgb(80, 80, 80);
|
||
|
|
color: rgb(255, 255, 255);
|
||
|
|
font-family: 'Montserrat';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400;
|
||
|
|
font-size: 16pt;
|
||
|
|
}
|
||
|
|
|
||
|
|
main.home {
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
.column {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
flex-basis: 0;
|
||
|
|
flex-grow: 1;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.left{
|
||
|
|
align-items: flex-end;
|
||
|
|
padding-right: 2vw;
|
||
|
|
}
|
||
|
|
|
||
|
|
.right{
|
||
|
|
align-items: flex-start;
|
||
|
|
padding-left: 2vw;
|
||
|
|
}
|
||
|
|
|
||
|
|
.instant {
|
||
|
|
background-color: rgb(255, 255, 255);
|
||
|
|
padding: 2vw;
|
||
|
|
}
|
||
|
|
|
||
|
|
.instant img {
|
||
|
|
max-width: 25vw;
|
||
|
|
}
|
||
|
|
|
||
|
|
.instant h1 {
|
||
|
|
text-align: center;
|
||
|
|
color: rgb(10, 10, 10);
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 1vw 0 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.links a {
|
||
|
|
color: rgb(255, 255, 255);
|
||
|
|
font-size: xx-large;
|
||
|
|
}
|
||
|
|
|
||
|
|
.links a:hover {
|
||
|
|
color: rgb(242,132,14);
|
||
|
|
}
|
||
|
|
|