/* top bar */
.firstsection {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://jwatson.brambling.cdu.edu.au/web0/ICTWEB304-sem2/images/spaghetti-cropped.jpg');
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
}

.firstsection:hover .background-image {
    filter: brightness(1.08) opacity(0.8);
}

.box-main {
    display: flex;
}

.image-text {
    text-align: center;
    color: #000;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
}

.text-big {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-small {
    font-size: 22px;
}


/* Card styling */

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.card button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #45a049;
}

.card h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    margin: 5px 0;
}

.award-list {
    margin-top: 20px;
}

.award-list .text-big {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.award-list .text-tiny {
    font-size: 14px;
}

.thumbnail {
    margin-left: 20px;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
