body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: #c7fdff;
    color: #020000;
    max-width: 100%; 
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
} 

header {
    width: 100%;
    padding: 20px;
    background-color: #010005;
    text-align: center;
    color: #f2f2f2;
    white-space: nowrap;
}

       .site-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #00c3ff;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1000px) {
    .site-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    overflow: hidden;
    justify-content: end;
    justify-content: space-between;
}


.blue-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.red-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    padding: 2px 5px;
    background-color: #030000;
    color: rgb(171, 241, 244);
    font-size: 20px;
    font-weight: 700;
    padding: 14px 20px;

}

.green-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

a {
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 10px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blue-button {
    background-color: #005f8a;
    color: white;
}
.blue-button:hover {
    background-color: #007ba3;
}
.blue-button.special {
    background-color: rgb(2, 50, 63);
}
.blue-button.special:hover {
    background-color: rgb(2, 50, 63);
    transform: scale(1.05);
}

.red-button {
    background-color: #000202;
    color: rgb(171, 241, 244);
}
.red-button:hover {
    background-color: rgb(52, 52, 52);
}

.green-button {
    background-color: #032e34;
    color: white;
}
.green-button:hover {
    background-color: #032e34;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .blue-buttons,
    .red-buttons,
    .green-buttons {
        justify-content: center;
    }

    a {
        font-size: 16px;
        padding: 8px 14px;
    }
}

.content {
    max-width: 90%;
    width: auto;
    background: #b2f4f9;
    border-radius: 0px;
    padding: 5px;
    margin: 5px;
    border: 0px solid #040000;
    box-align: center;
    position: relative;
    overflow: hidden; 
}

.content h2 {
    color: #060000;
    font-size: 24px;
    margin-bottom: 15px;
}

.content p {
    font-size: 17px;
    color: #060000;
    margin-left: 10px;
    margin-right: 10px;
    text-align: justify;
    font-size: medium;
    
}
.content li{
    list-style-type: disc;
    list-style: disc;
    font-style: italic;
    margin: 15px;
}
.content h2{
   font-weight: bolder; display: inline; font-size: 17px; color: rgb(67, 13, 3);
}

.content ul {
    list-style-type: square;
    margin: 20px 0;
    padding-left: 20px;
    color: #060000;
}

@media (max-width: 768px) {
    .red-button {
        padding: 4px 8px;
        font-size: 11px;
    }

    .content {
        padding: 15px;
    }
}

footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #060000;
    color: #ffffff;
}
footer p{
    font-size: small;
    font-weight: 100;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 10px;
}

.tiny-images {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
}

.tiny-images a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.tiny-images a:hover {
    transform: scale(1.3);
}

.tiny-images img {
    width: 35px; 
}

.copyright {
    font-size: 9px;
    color: #e4e3e3;
    text-align: center;
    padding: 10px;
}
