/* Reset default margins and paddings for consistency */
body, h1, p, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: white; /* Set background color */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styling */
@import url('https://fonts.googleapis.com/css2?family=Edu+Australia+VIC+WA+NT+Hand:wght@700&display=swap');

header h1 {
    ffont-family: "Gilroy-ExtraBold";
    src: url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.eot");
    src: url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/00d5a78493aed4b11e2584ad7cceee49.svg#Gilroy-ExtraBold")format("svg");
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    background: white;
}

/* Image styling for logos */
.top-left-image, .top-right-image {
    position: absolute;
}

/* Positioning top-left image */
.top-left-image {
    top: 12px;
    left: 12px;
    width: 450px; /* Adjust width as needed */
    height: auto;
}

/* Positioning top-right image */
.top-right-image {
    top: 5px;
    right: 5px;
    width: 180px; /* Adjust width as needed */
    height: auto;
}

/* Carousel styling */
.carousel-inner img {
    width: 100%;
    height: auto;
}

/* Button styling */
#registerButton {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    padding: 25px 75px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#aboutButton {
    position: absolute;
    top: 5px;
    right: 190px;
    transform: translateX(-50%);
    color: black;
    text-decoration: underline; /* Underline the text */
    border: none;
    background: none; /* Remove background */
    padding:10px; /* Remove padding */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease; /* Transition for text color change */
}

#aboutButton:hover {
    color: blue; /* Change text color on hover */
}
#accomplishmentButton {
    position: absolute;
    top: 30px;
    right: 100px;
    transform: translateX(-50%);
    color: black;
    text-decoration: underline; /* Underline the text */
    border: none;
    background: none; /* Remove background */
    padding:10px; /* Remove padding */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease; /* Transition for text color change */
}

#accomplishmentButton:hover {
    color: blue; /* Change text color on hover */
}

/* Marquee styling */
#scroll_news {
    font-family: 'Book Antiqua', serif;
    font-weight: bold;
    color: #FFFFFF;
    padding: 10px 0 5px 0;
    background: #fff;
    background-color: rgba(128, 128, 128, 0); /* Ensures compatibility with older browsers */
    width: 100%;
    position: relative;
    margin-top: 20px;
}

#scroll_news a {
    color: #FFFFFF; /* Link color */
    text-decoration: underline; /* Underline the links */
    font-weight: bold; /* Make the links bold */
    transition: color 0.3s ease; /* Transition for color change on hover */
}

#scroll_news a:hover {
    color: blue; /* Change text color on hover */
}

.newGIFImg1 {
    vertical-align: middle; /* Align the image vertically in the middle */
    margin-right: 5px; /* Space between the image and text */
    width: 35px; /* Adjust width as needed */
    height: auto;
}

/* Overview box styling */
.overview-box {
    position: relative;
    width: calc(100% - 400px); /* 200px from each side */
    max-width: 800px; /* Max width for the box */
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.overview-box h2 {
    margin: 0;
    padding-right: 20px;
    font-size: 1.5em;
}

.overview-box p {
    margin: 0;
    flex: 1;
}

.overview-box img {
    width: 150px;
    height: auto;
    margin-left: 20px;
}

/* Footer styling */
footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer .socials {
    display: flex;
    align-items: center;
}

footer .contact {
    display: flex;
    align-items: center;
}
