body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 20px;
}

.image {
    width: 200px;
    height: 85px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-button {
    padding: 15px 30px;
    background-color: #0c2744;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #183d6d;
}

#image1 {
    background-image: url('../images/HGHTNCompanyLogo.jpg');
}

#image2 {
    background-image: url('../images/HGHTSCompanyLogo.jpg');
}

#image3 {
    background-image: url('../images/HGHTECompanyLogo.jpg');
}

#image4 {
    background-image: url('../images/HGHTFCompanyLogo.jpg');
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }
}