2024-10-05 22:33:57 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
height: 100vh;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-10-13 22:33:21 +00:00
|
|
|
body{
|
|
|
|
background: url(#background);
|
|
|
|
background-size: 100% 100%;
|
|
|
|
-o-background-size: 100% 100%;
|
|
|
|
-webkit-background-size: 100% 100%;
|
|
|
|
background-size: cover;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-05 22:33:57 +00:00
|
|
|
|
|
|
|
#app {
|
2024-10-13 22:33:21 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 620px;
|
|
|
|
padding-bottom: 30px;
|
2024-10-05 22:33:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
text-align: center;
|
2024-10-13 22:33:21 +00:00
|
|
|
height: 4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.border{
|
|
|
|
border-color: black;
|
2024-10-05 22:33:57 +00:00
|
|
|
background-color: white;
|
2024-10-13 22:33:21 +00:00
|
|
|
border-width: 2px;
|
2024-10-05 22:33:57 +00:00
|
|
|
border-style: solid;
|
2024-10-13 22:33:21 +00:00
|
|
|
box-shadow: 5px 5px 5px black;
|
2024-10-05 22:33:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: grey;
|
|
|
|
}
|
2024-10-13 22:33:21 +00:00
|
|
|
|
2024-10-05 22:33:57 +00:00
|
|
|
|
|
|
|
p {
|
2024-10-13 22:33:21 +00:00
|
|
|
font-size: 1.5rem;
|
2024-10-05 22:33:57 +00:00
|
|
|
padding: 0.5vh 1vw;
|
|
|
|
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 3rem;
|
|
|
|
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
font-weight: 600;
|
2024-10-13 22:33:21 +00:00
|
|
|
text-transform: uppercase;
|
2024-10-05 22:33:57 +00:00
|
|
|
}
|
|
|
|
|
2024-10-13 22:33:21 +00:00
|
|
|
.home-img{
|
|
|
|
width: 620px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu{
|
|
|
|
position: fixed;
|
|
|
|
display: inline-flex;
|
|
|
|
transform: rotate(-90deg) translate(-100%, 50%);
|
|
|
|
transform-origin: 0 50%;
|
|
|
|
left: 10px;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu > p{
|
|
|
|
margin: 0px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#background{
|
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|