body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('../img/school.jpg') center / cover no-repeat;
    color: #fff;
    
    
}




.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.logo {
    margin-bottom: 8px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #e68900;
}

button:active {
    transform: scale(0.98);
}

footer {
    position: absolute;
    bottom: 10px;
    font-size: 0.9rem;
    color: #000000;
}

#topo{
    
position: absolute;
    
top: 0;
    
padding-top: 10px;
    
width: 100%;
    
background-color: #ff9800;
    
text-align: center;
    
box-shadow: 2px 3px teal;
}