summaryrefslogtreecommitdiff
path: root/styles.css
blob: 32fb5cf4743b0f97e311858dfa9ad75872b573e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@font-face {
  font-family: "Josefin Sans";
  src: url("fonts/JosefinSans-VariableFont_wght.ttf");
  src: url("fonts/JosefinSans-VariableFont_wght.ttf") format("truetype");
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}

body {
  font-family: "Josefin Slab";
  font-weight: 400;
  color: #27327b;
}

a {
  font-family: "Josefin Sans";
  font-weight: 400;
  color: #27327b;
}

h1, h2, h3, h4, h5 {
  font-family: "Josefin Sans";
  font-weight: 700;
  color: #27327b;
}

html {
  font-size: 100%;
} /* 16px */
h1 {
  font-size: 4.21rem; /* 67.36px */
}

h2 {
  font-size: 3.158rem; /* 50.56px */
}

h3 {
  font-size: 2.369rem; /* 37.92px */
}

h4 {
  font-size: 1.777rem; /* 28.48px */
}

h5 {
  font-size: 1.333rem; /* 21.28px */
}

small {
  font-size: 0.75rem; /* 12px */
}

@keyframes reveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-container .menu-wrapper {
  list-style: none;
}
.menu-container .menu-wrapper li {
  margin: 0.5vmin 0;
  display: flex;
  justify-content: left;
  opacity: 0;
  animation: reveal 1s ease-out forwards;
}
.menu-container .menu-wrapper li:nth-child(1) {
  animation-delay: 0.15s;
}
.menu-container .menu-wrapper li:nth-child(2) {
  animation-delay: 0.3s;
}
.menu-container .menu-wrapper li:nth-child(3) {
  animation-delay: 0.45s;
}
.menu-container .menu-wrapper li:nth-child(4) {
  animation-delay: 0.6s;
}
.menu-container .menu-wrapper li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15vmin;
  color: #27327b;
}

/*# sourceMappingURL=styles.css.map */