/*
    Author: Ethan Clapham
    Date: 18/02/2025
    Description: Styling for the contents of the home page   
*/

/* Sizing of the logo */
img {
    width: 50%;
    height: auto;
    min-width: 350px;
    max-width: 800px;
}

/* Styling for the placements of the buttons */
.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Styling for the buttons */
.button {
    width: 100px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ddd;
    transition: background-color 0.5s ease;
    font-size: 20px;
    border: solid 1px #505050;
}

.button-register {
    width: 100px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    background-color: #505050;
    transition: background-color 0.5s ease;
    font-size: 20px;
    border: solid 1px #505050;
}

/* Styling for the buttons when hovered */
.button:hover {
    background-color: white;
}

.button-register:hover {
    background-color: #9b9b9b;
}

/* Styling to remove styling off texts in buttons*/
a {
    text-decoration: none;
    color: black;
}

/* Styling for the about section */
.about {
    display: block;
    text-align: left;
    margin: 20px;
    padding: 20px;
}

/* Styling for list */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: flex;
    align-items: first baseline;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.info-icon {
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: black;
}