*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*------News------*/
.wrapper {
    display: flex;
    flex-direction: row;
}

.news {
    width: 24%;
    padding: 10px;
    color: #05a7e5;
    flex-grow: 1;
    padding-top: 30px;
    text-align: center;
}

.news h2 {
    border-bottom: 2px solid black;
}

.news h2 a {
    text-decoration: none;
    color: #00adef;
}

.news h2 a:hover {
    color: rgb(8, 63, 241);
}

.news p {
    border-bottom: 1px solid black;
    color: black;
    text-align: left;
    padding-top: 30px;
    padding-bottom: 20px;
}

.news sub {
    color: #06960e;
}


/*---MessageBox---*/
.notif {
    min-height: 100vh;
    width: 74%;
    flex-grow: 1;
}

#message {
    background-color: rgb(8, 134, 19);
    color: white;
    padding: 8px;
    border: 1px solid black;
    font-size: 16px;
    text-align: center;
    display: none;  /* Hide the message box by default */
}

.about {
    min-height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 3%;
    background-image: linear-gradient(340deg, rgba(8, 4, 63, 0.74), rgba(80, 57, 7, 0.74)), url("/images/banner2-min.jpg");
    background-position: center;
    background-size: cover;
}

.about h1 {
    border-bottom: 2px solid white;
}

.about p {
    padding: 8%;
}

/*------Counter------*/
.counter {
    width: auto;
    background-color: black;
    text-align: center;
    border-top: 1px solid gray;
    padding-top: 2px;
}

/*------Contact------*/
.contact {
    width: auto;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    position: static;
}

.contact h6 {
    font-size: 20px;
    margin-bottom: 5px;
}

.info {
    width: auto;
    background-color: black;
    color: white;
    display: flex;
    margin: 0 auto;
    border-top: 1px solid gray;
    border-bottom: 10px solid black;
    padding: 20px;
    text-align: center;
}

.email {
    flex-grow: 1;
    flex-basis: 100%;
    padding: 10px;
}

.phone {
    flex-grow: 1;
    flex-basis: 100%;
    padding: 10px;
}

.address {
    flex-grow: 1;
    flex-basis: 100%;
    padding: 10px;
}

.info h6 {
    font-size: 15px;
    margin-bottom: 2px;
}

@media only screen and (max-width: 550px) {
    .info {
        flex-direction: column;
    }
}

/*------Copyright------*/
.copyright {
    border-top: 1px solid gray;
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
}
