body {
    background-color: #ECF8F6; /* Light blue XP-style background */
    color: #000000; /* High contrast black text */
    font-family: Tahoma, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.cover_img {
    margin: 5px;
    width: 100%;
}

.horz_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.side_chevs {
    position: fixed;
    width: 40px;
    background-image: url('../chevron.svg');
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
}

.home-button {
    font-family: Tahoma, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    margin: 10px;
    color: #000000;
    background-color: #93d4ff; /* XP button grey */
    border: 2px solid #ffffff; /* XP blue border */
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -4px 20px 5px #5757571f;
    text-decoration: none;
    position:absolute;
    left: 10px;
}

.home-button:hover {
    background-color: #cfdbe6; /* XP-style lighter hover */
    box-shadow: -3px 10px 5px #666666c5;
    left: 8px;
}

.home-button:active {
    background-color: #d1d9e0; /* Slight pressed effect */
    box-shadow: inset 2px 2px 5px #444444;
}

.principle-background {
    margin: 0;
    background-color: #ddeeff; /* XP sky blue */
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.principle-img {
    border: 2px solid #7f9db9;
    margin: 10px;
    box-shadow: 5px 5px 15px #aaaaaa;
}

.principle {
    font-family: Tahoma, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #ffffff; /* White XP panel */
    color: #000000;
    border: 2px solid #0061bd; /* XP-style border */
    border-radius: 5px;
    padding: 20px;
    margin:10px;
    text-align: center;
    box-shadow: 0px 4px 10px #888888;
    width: 60%;
    max-width: 800px;
}

.principle:hover {
    background-color: #f0f8ff; /* Soft XP hover effect */
    box-shadow: 0px 6px 12px #666666;
    transform: translate(-2px, -2px);
}

.respect-my-space {
    white-space: pre-wrap;
    font-family: Tahoma, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333333;
}

p {
    margin: 10px;
}

.seding {
    color: #ff9900; /* Bright orange emphasis */
    font-weight: bold;
}

.paragraaf {
    margin: 30px;
}

.smarty {
    width: 100%;
    padding: 15px;
    background-color: #ffffff; /* Light XP-style blue */
    box-shadow: 0px 2px 5px #7f9db9;
    color: #333333;
}

h1 {
    font-size: 2rem;
    margin: 10px;
    background-color: #7f9db9; /* XP title bar color */
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    text-shadow: 1px 1px 2px #000000;
}

h2, h3 {
    font-size: 1.5rem;
    margin: 10px;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* box-shadow: 4px 4px 10px #888888; */
    background-color: transparent;
}

header h1 {
    font-size: 2rem;
    color: #333333;
    text-shadow: 1px 1px 2px #888888;
    margin: 20px 0;
}

.info-section p {
    color: #333333;
}

.buttons-section {
    grid-column: span 2;
    padding-top: 20px;
}
.title{
    position: absolute;
    background:none;
    top:40%;
    left:50%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: #7f9db9 10px 10px 5px;
}
.jirre{
    background:none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: #7f9db9 10px 10px 5px;
}
button {
    width: 150px;
    padding: 10px;
    margin: 10px;
    border: 2px solid #7f9db9;
    background-color: #e3e3e3;
    color: #000000;
    font-size: 1rem;
    font-family: Tahoma, sans-serif;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 5px #aaaaaa;
    transition: all 0.2s ease;
}

.rotating-container {
    position: relative;
    width: 200px; /* Adjust based on your needs */
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rotating-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    color: #333333;
    position: absolute;
    animation: rotateAround 5s linear infinite;
    transform-origin:  100% center; /* Rotates around a point 150px below the center of the text */
}

/* Keyframe Animation for Rotation */
@keyframes rotateAround {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}