File size: 1,363 Bytes
10e383a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/*<!-- HTML !-->*/
/*<button class="button-73" role="button">Button 73</button>*/


.flex-container {
    display: flex;
    height: 100vh; /* Full viewport height */
  }
  .left-column {
    flex: 0 0 200px; /* Fixed width */
    background-color: #f2f2f2;
    /* More styles for the left column content */
  }
  .right-column {
    flex-grow: 1; /* Fill the remaining width */
    background-color: #e8e8e8;
    /* More styles for the right column content */
  }
  /* Style for the Three.js canvas container */
  #canvas-container {
    width: 100%;
    height: 100%;
  }



/* CSS */
.container {
  position: absolute;
  top: 3%;
  left: 20%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}



/* CSS */
.button-74 {
  background-color: #fbeee0;
  border: 2px solid #422800;
  border-radius: 30px;
  box-shadow: #422800 4px 4px 0 0;
  color: #422800;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  padding: 0 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-74:hover {
  background-color: #fff;
}

.button-74:active {
  box-shadow: #422800 2px 2px 0 0;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-74 {
    min-width: 120px;
    padding: 0 25px;
  }
}