aboutsummaryrefslogtreecommitdiff
path: root/scss/main.scss
blob: 60a3a90058e0441f96196ceb6936c3aaa28eb8e5 (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
@use "../node_modules/reset-css/reset.css";

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

main {
  width: 50%;
  background: mediumpurple;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0px 0px 70px 2px rgba(0,0,0,0.75);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

.presentation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;

  &__information {
    display: flex;
    //width: 100%;
    margin-right: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  & figure {
    display: inline;
    & img {
      height: 128px;
      border-radius: 32px;
      box-shadow: 0px 0px 50px -20px rgba(0,0,0,0.75);
    }
  }
  & h2, p {
    display: inline;
  }
}

.links {
  display: flex;
  margin-top: 2rem;
  width: 100%;
  gap: 1rem;
  & .link {
    display: block;
    background: purple;
    width: 33%;
    padding: 1em;
    border-radius: 16px;
  }
  & a {
    display: block;
    color: black;
    text-decoration: none;
    text-align: center;
  }
}