.content {
    height: 82vh;
    display: grid;
    grid-template-rows: 1.5fr 1fr;
}

.homeimage {
    /* width: 100vw; */
    height: 100%;

    background-image: url(/Images/homepage1.jpg);
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.hometitle {
    font-size: 30px;
    font-weight: 600;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 10px;
    margin-top: 100px;

    height: 35px;
}

.homebutton {
    margin: 30px;
}

.homebutton a {
    background-color: aliceblue;
    text-decoration: none;
    color: black;

    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    transition: 0.4s;
    font-weight: bolder;
}

.homebutton a:hover {
    background-color: rgb(230, 230, 230);
}



.homeboxes {
    display: flex;
    justify-content: space-around;
}

.homebox {
    background-color: aliceblue;
    margin: 30px;
    padding: 10px;
    border-radius: 10px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homeboximage {
    width: 300px;
    
}

.homeboximage img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.homeboxtitle {
    font-size: 20px;
    margin: 10px;
    color: rgb(38, 78, 73);
    font-family: 'Franklin Gothic Medium';
}

.homeboxbutton {
    margin: 20px;
}

.homeboxbutton a {
    text-decoration: none;
    background-color: white;
    padding: 10px;
    border-radius: 10px;

    color: black;
    font-size: 20px;
    font-weight: 700;
    transition: 0.4s;
}

.homeboxbutton a:hover {
    background-color: rgb(230, 230, 230);
}

@media (max-width: 780px) {
    .hometitle {
        font-size: 16px;
    }

    .homebutton a {
        font-size: 15px;
    }

    .homeboxes {
        flex-direction: column;
    }
}