body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/heroimg.png);
    height: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}
.hero-text {
    text-align: center; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: white;
}
.trademark img {
    height: 50px;
    width: 50px;
}
#menu-toggle {
    display: none;
}
#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}
.nav-links li {
    margin-left: 18px;
    margin-right: 18px;
}
.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition: transform .3s;
    display: inline-block;
}
.nav-links li a:hover{
    transform: scale(1.5);
}
.choice{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-right: 100px;
    margin-left: 100px;
    gap: 4%;
}
.choice div{
    border: solid black 2px;
    border-radius: 10px;
    height: 200px;
    width: 480px;
    margin-top: 30px;
    text-align: center;
    top: 50%;
    left: 50%;
    transition: transform .3s ease;
}
.choice div:hover{
    transform: scale(1.17);
}
div img {
    height: 100px;
    width: 200px;
}
.trademark{
    display:flex;
    align-items: center;
}
@media (min-width:1280px){
    .choice{
        flex-direction: row;
    }
}
section {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    /* border: 1px solid black; */
    align-items: center;
}
section p {
    margin: 5px;
}
h1 {
    display: flex;
    justify-content: center;
}
