body {
    margin: 0;
    padding: 0;
    background-color: #02061c;
}
header {
    width: 100%;
    background: linear-gradient(135deg,     
    #1a0000 0%,
    #4b0a0a 10%,
    #b81b1b 30%,
    #ff4c4c 45%,
    #7a0e0e 60%,
    #4b0a0a 80%,
    #b81b1b 100%);
    border-bottom: 4px solid white;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
}

header hgroup {
    flex: 1;
}
nav.menu {
    position: relative;
    left: 0 1rem;
    top: 0 1rem;
}
nav.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}
nav.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
nav.menu a:hover {
    color: #1a0000;
}
.layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1rem;
}
.left {
    flex: 1;
}
.section1 {
    border: 6px solid #7a0e0e;
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.footer {
     background: linear-gradient(135deg,     
    #1a0000 0%,
    #4b0a0a 10%,
    #b81b1b 30%,
    #ff4c4c 45%,
    #7a0e0e 60%,
    #4b0a0a 80%,
    #b81b1b 100%);
    color: white;
    padding: 8px 0;
    margin-top: 2rem;
    text-align: center;
    border-top: 4px solid white;
}
.section2 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem auto;
    flex: 1;
    flex-wrap: wrap;
}
.section2 .card-box {
    flex: 1;
    border: 2px solid white;
    border-radius: 12px;
    padding: 1rem;
    background: #7a0e0e;
    text-align: center;
    text-decoration: none;
}
.section2 a.card-box {
    text-decoration: none;
    color: #7a0e0e;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.section2 a.card-box:hover {
    transform: translateY(-5px);
    transition: transform 0.7s ease, box-shadow 0.7s ease;
    box-shadow: 0 4px 12px #ff4c4c;
    background-color: #ff4c4c;
}
.card {
    background-color: #02061c;
}

header, header * {
    color: #ffffff;
}
header a {
    text-decoration: none;
}

.section1 article,
.section1 article * {
    color: #ffffff !important;
}
.footer, .footer * {
    color: #ffffff !important;

}
.section2 .card-box,
.section2 .card-box * {
    color: #ffffff !important;
}
#weer-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #7a0e0e;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 0 10px #ff4c4c;
    z-index: 1000;
}
.button{
    background-color:#7a0e0e;
    border-color:#7a0e0e;
}
.contact {
    margin: 0 1rem;
}