42 lines
687 B
CSS
42 lines
687 B
CSS
|
|
|
|
@font-face {
|
|
font-family: mainFont;
|
|
src: url("../fonts/poppins/Poppins-Regular.ttf");
|
|
}
|
|
|
|
.poppins {
|
|
font-family: mainFont;
|
|
}
|
|
|
|
#myVideo {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.button {
|
|
cursor: pointer;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
letter-spacing: 2px;
|
|
font-size: 12px;
|
|
background-color: rgb(255, 152, 0) !important;
|
|
color: rgb(0, 0, 0);
|
|
border-radius: 70px;
|
|
padding: 0 15px 0 50px;
|
|
height: 70px;
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|
|
.nav-item dropdown dmenu {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
li a {
|
|
margin-right: 20px;
|
|
}
|