* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   /* background: linear-gradient(135deg, #0066cc, #004080);*/
    background-color: #002c6c;
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.enter-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #004080;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.enter-btn:hover {
    background-color: #e6f0ff;
}

.enter-btn:active {
    transform: scale(0.98);
}
