*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;


}

header{
    min-height: 100vh;
    background-image:url(image/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
nav{
    width: 100%;
    height: 10vh;
    display: flex;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    align-items: center;
    position: sticky;
    z-index: 50;
    top:0;
}
nav .menu{
    /* margin-top: 20px; */
    align-items: center;
    width: 40%;
    display: flex;
    justify-content: space-around;
}
nav .register{
    width: 25%;
    display: flex;
    justify-content: space-around;

}
nav .register :hover{
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.3);
    transition: 0.2s ease-in-out;
    
}
nav img{
    width: 50px;
}

nav .menu a{
    color: white;
    text-decoration: none;

}

 nav .register a{
    padding: 10px 25px;
    border-radius: 4px;
    outline:none;
    background-color: #00b894;
    color: white;
    text-decoration: none;

 }

 header .hero{
    color: white;
    padding-top: 10vh;
    padding-left: 5vh;

 }
 .bode{
    background-color: antiquewhite;
    padding: 20px;
 }
 .bode h2{
    font-size: 42px;
    color: black;
    text-align: center;
    font-weight: 300;
 }

 .work {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    max-width: 1100px;
    margin: 50px auto;


}

.grid_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    max-width: 320px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.2);
    transition: 0.2s ease-in-out;
}

.image_container img{
    width: 320px;
}

.card_container {
    padding: 20px;

}

.card_container h3 {
    margin-bottom: 10px;
}
.card:hover {
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.3);
    transition: 0.2s ease-in-out;
}

footer {
    text-align: center;
    text-transform: uppercase;
    background: antiquewhite;
    padding: 20px;
    color: black;
}



