body {
margin: 0;
padding: 0;
background-color: #f5fff2;
font-family: arial;
}
a {
text-decoration: none;
color: black;
}
.popup-back {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
}
.popup-cookies {
position: fixed;
bottom: 0;
display: none;
width: 100%;
background-color: #d3d3d3;
padding: 32px;
}
.popup-buttons {
position: relative;
text-align: end;
width: 80%;
margin: auto;
}
.popup-button {
margin-right: 8px;
margin-left: 8px;
padding: 8px 64px;
border-radius: 32px;
font-weight: bold;
}
.popup-button:hover {
cursor: pointer;
}
.popup-accept {
font-size: 16px;
color: lightgray;
background-color: darkgreen;
transition: all 0.4s ease 0s;
}
.popup-accept:hover {
}
.popup-deny {
font-size: 16px;
color: lightgray;
background-color: darkred;
transition: all 0.4s ease 0s;
}
.popup-deny:hover {
}
.header {
margin-bottom: 30px;
display: flex;
}
.header-menu {
display: block;
align-content: center;
background-color: #ffcb00;
padding: 32px;
margin: auto;
border-bottom-right-radius: 64px;
border-bottom-left-radius: 64px;
}
a.header-menu-item {
padding: 8px;
margin: 8px;
text-decoration: none;
color: #313a2e;
font-weight: bold;
transition: all 0.3s ease 0s;
}
.header-menu-item-selected {
padding: 8px;
margin: 8px;
text-decoration: none;
color: darkgreen;
border-radius: 64px;
font-weight: bold;
pointer-events: none;
}
a.header-menu-item:hover {
color: darkblue;
text-shadow: 2px 2px 4px gray;
}
.footer {
margin-top: 64px;
background: linear-gradient(to right, transparent, white, transparent);
display: block;
}
.footer-docs {
text-align: end;
}
.footer-doc {
color: darkgreen;
}
.footer-copy {
text-align: center;
}
.card {
display: flex;
width: fit-content;
border: 1px solid black;
border-radius: 16px;
}
.card-content {
padding: 25px;
text-decoration: none;
width: 100pc;
}
.card-content h2 {
text-decoration: none;
}
.container-md {
width: 800px;
margin: auto;
}
.container-sm {
display: block;
width: 600px;
margin: auto;
}
.container-xl {
max-width: 1000px;
margin: auto;
}
.text-bold {
font-weight: bold;
}
.shadow {
box-shadow: 2px 2px 16px 0 black;
}
.shadow-hover {
box-shadow: 2px 2px 16px 0 black;
transition: all 0.3s ease 0s;
}
.shadow-hover:hover {
box-shadow: 8px 8px 32px 0 black;
cursor: pointer;
}
.home {
display: block;
margin-top: 50px;
}
.home-title {
margin-top: 150px;
font-size: 3rem;
font-weight: bold;
}
.home-subtitle {
font-size: 2rem;
}
.home-media {
margin-top: 60px;
display: flex;
justify-content: center;
align-items: center;
}
.home-image {
width: 300px;
transition: all 0.3s ease 0s;
}
.home-image:hover {
transform: scale(1.2);
}
.projects {
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
}
.projects-image {
width: 100px;
height: 100px;
padding: 25px;
}
.project {
width: 800px;
margin-top: 20px;
margin-bottom: 20px;
}
.about {
display: block;
margin-top: 50px;
}
.about-title {
font-size: 3rem;
font-weight: bold;
}
.about-subtitle {
font-size: 2rem;
}
.about-paragraph {
font-size: 1.2rem;
}
.contact {
display: flex;
justify-content: center;
flex-direction: column;
}
.contact img {
margin: 20px;
border-radius: 20px;
}
.contact button {
background-color: #8ea583;
color: white;
margin-top: 40px;
border-radius: 64px;
padding: 8px;
border: 1px solid white;
}
.contact button:hover {
background-color: #8ea583;
}
.input-line {
font-size: 22px;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px;
border-radius: 10px;
}
.articles {
}
.article-header h2 {
margin: 0;
padding: 0;
}
.article-header h4 {
margin: 0;
padding: 0;
}
.article-post {
}
.article-link {
font-weight: bold;
padding: 8px;
border-radius: 8px;
transition: all 0.3s ease 0s;
}
.article-link:hover {
background-color: darkgreen;
color: white;
}
