|
|
|
@ -160,3 +160,72 @@ html {
|
|
|
|
|
calc(2*var(--s)) calc(9*var(--s)/4),
|
|
|
|
|
calc(2*var(--s)) calc(3*var(--s)/4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
background-color: #bda3b6;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: #1a2c4c;
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-logo{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #333;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #333;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav img {
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-links {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.floating-button {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
background-color: #bda3b6;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: #1a2c4c;
|
|
|
|
|
border-width: 4px;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
font-size: 50px;
|
|
|
|
|
color: #1a2c4c;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-links a:hover {
|
|
|
|
|
color: #494949;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.floating-button:hover {
|
|
|
|
|
background-color: #72606d;
|
|
|
|
|
}
|