Newer
Older
font-family: inherit;
font-weight: 800;
cursor: pointer;
position: relative;
border: none;
background: none;
text-transform: uppercase;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
transition-duration: 400ms;
transition-property: color;
content: "";
pointer-events: none;
bottom: -2px;
left: 50%;
position: absolute;
width: 0%;
height: 2px;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
transition-duration: 400ms;
transition-property: width, left;
display: flex;
justify-content: center;
text-align: center;
align-items: center;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
transition-duration: 400ms;
color: rgb(255, 255, 255);
}
.arrow:hover{
transform: scale(1.2);
}
.arrow a{
font-size: 120%;
justify-self: center;
align-items: center;
justify-content: center;
display: flex;
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
}
.button2 {
font-family: 'Outfit', sans-serif;
appearance: none;
background-color: #ffcd6f;
border: 1px solid #ffffff;
border-radius: 5px;
color: #ffffff;
cursor: pointer;
font-size: 18px;
line-height: normal;
height: 54px;
width: 130px;
outline: none;
text-align: center;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
will-change: transform;
margin:10px;
}
.button2:hover {
color: #ffffff;
background-color: #5cbbd8;
border: 1px solid #30a5af;
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
}
.button2:active {
box-shadow: none;
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
}
.button3 {
font-family: 'Outfit', sans-serif;
appearance: none;
background-color: #38dd6f;
border: none;
border-radius: 5px;
font-weight: 600;
color: #ffffff;
cursor: pointer;
font-size: 18px;
line-height: normal;
height: 40px;
width: 100px;
outline: none;
text-align: center;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
will-change: transform;
}
.button3:hover {
color: #000000;
background-color: #ffffff;
border: none;
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
transform: scale(1.05);
}
.button3:active {
box-shadow: none;