* {
    box-sizing: border-box;
}

body {
    background-color: #145592;
    font-family:'Courier New', Courier, monospace
}

h1 {
    text-align: center;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 840px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px;
    border-color: rgba(255, 255, 255, 0.18);
    border-style: solid;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.container h1 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.container h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.container p {
    text-align: center;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.04em
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    background: rgba(255, 255, 255, 0.2);
    list-style-type: none;
    display: flex;
    max-width: 300px;
    padding: 12px 12px;
    border-radius: 999px;
    border: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    flex-direction: column;
    transition: ease 0.3s, background 0.3s ease
}

.button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.error-grid {
    display: grid;
    grid-template-areas: repeat(auto-fir, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 20px auto 0;
}

.error-report-card {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: auto;
    height: auto;
}

.error-report-card:hover {
    background: rgba(255, 255, 255, 0.5)
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    background: rgba(18, 73, 125, 0.95);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

nav h2 {
    margin: 0;
    color: white;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
}

nav div {
    display: flex;
    justify-content: flex-end;
    width: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 12px 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.18);
}

h3 {
    color: white;
    text-align: center;
}

section div ul {
    list-style:circle;
    color: white;
}

h4 {
    color: white;
    text-align: left;
    
}