:root {
    --primary-color: #2F4858; 
    --secondary-color: #F26419; 
    --background-color: #F6AE2D;
    --border-color: #86BBD8; 
    --text-color: #33658A; 
}
@keyframes shake {
    0% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(5px); }
    75% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }
a{
    display: inline-block;
    color: var(--text-color);
}
a:hover{
    animation: shake 0.5s ease-in-out;
}
body {
    margin: 0;
    padding: 0;
    background-image: url('img/denim.png');
    background-color: var(--primary-color); 
    color: var(--text-color);
}
html, body {
    cursor: url("cursor.cur"), default;
}
@font-face {
    font-family: 'thing';
    src: url(pixellari.ttf);
}
header {
    font-family: 'blackwolf';
    background-image: url('img/orangetexture.jpg');
    text-shadow: #2F4858 7px 7px 6px;
    text-align: left;
    margin: 0;
    padding: 20px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-bottom: #14288a 8px solid;
    width: 100%;
    background-color: var(--secondary-color);
}
header h1 {
    display: block;
    color: var(--border-color);
    rotate: -3deg;
    padding-left: 20px;
    font-size: 7vw;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    padding: 10px;
    width: 100%;
}
nav a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'blackwolf';
    font-size: 2vw;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}
nav a:hover {
    color: var(--border-color);
    animation: shake 0.8s ease-in-out;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
li {
    margin: 0 10px;
}
li a:hover {
    animation: shake 0.8s ease-in-out;
    color: var(--border-color);
}
li a:active {
    color: var(--secondary-color);
}
@font-face {
    font-family: 'blackwolf';
    src: url('BlackWolf.ttf');
}
@keyframes spin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}
#logoimg {
    width: 10vw;
    height: auto;
    max-width: 120px;
    position: absolute;
    top: 5%;
    right: 2%;
    margin: 0 10px;
    margin-top: 2vh;
    background-color: var(--background-color);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: spin 6s linear infinite;
}
main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
}
.section {
    padding: 20px;
    color: var(--background-color);
}
.section h3 {
    color: var(--background-color);
    font-family: 'blackwolf';
    font-size: 2vw;
    margin-bottom: 10px;
}
.section a {
    color: var(--background-color);
}
section {
    padding: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'thing';
    font-size: 2vw;
    margin: 0 auto;
    max-width: 60%;
    float: left;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
section h2 {
    color: var(--text-color);
    font-family: 'blackwolf';
    font-size: 3vw;
    margin-bottom: 10px;
}
section p {
    color: var(--text-color);
    font-size: 2vw;
    margin-bottom: 10px;
}
aside {
    float: right;
    padding: 20px;
    background-color: #14288a;
    color: var(--background-color);
    font-family: 'thing';
    font-size: 2vw;
    margin: 0 auto;
    max-width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
aside h3,
aside h2 {
    color: var(--text-color);
    font-family: 'blackwolf';
    font-size: 2vw;
    margin-bottom: 10px;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: var(--secondary-color);
    color: var(--background-color);
    font-size: 20px;
    position: static;
    bottom: 0;
    width: 100%;
}

.photo-album {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
figure {
    margin: 10px;
    display: block;
    padding: 0;
    width: 30%;
    float: left;
    position: relative;
    overflow: hidden;
}
figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
figure img:hover {
    transform: scale(1.05);
}
figure figcaption {
    text-align: center;
    font-size: 1.5vw;
    color: var(--text-color);
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
figure:hover figcaption {
    opacity: 1;
}