You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.3 KiB
81 lines
1.3 KiB
body {
|
|
background-color: #36454F;
|
|
color: white;
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
overflow: hidden; /* Makes the page non-scrollable */
|
|
}
|
|
|
|
.menu {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background-color: #000000;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.menu ul {
|
|
display: flex;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.menu ul li {
|
|
margin: 0 15px;
|
|
align-self: center;
|
|
}
|
|
|
|
.menu ul li:first-child {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.menu ul li a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.menu ul li a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.title {
|
|
font-size: 4em;
|
|
text-align: center;
|
|
margin-top: 20%;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 2,5em;
|
|
text-align: center;
|
|
}
|
|
|
|
.dicover_me_button {
|
|
display: block;
|
|
margin: 20px auto;
|
|
padding: 10px 20px;
|
|
background-color: white;
|
|
color: #36454F;
|
|
border: none;
|
|
border-radius: 25px;
|
|
font-size: 2em;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.material-symbols-outlined {
|
|
font-variation-settings:
|
|
'FILL' 0,
|
|
'wght' 400,
|
|
'GRAD' 0,
|
|
'opsz' 48;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.dicover_me_button:hover {
|
|
background-color: #cccccc;
|
|
}
|