@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
}

body {
    margin: 0 auto;
}

nav {
    background-color: rgb(43, 139, 140);
    display: flex;
    flex-direction: row;
    padding: 1rem 3rem;
    justify-content: space-between;
    align-items: center;
}

ul {

    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5rem;
    font-size: 20px;
    color: #ffffff;

}

.button{
    align-items: center;
    border: none;
    font-size: 20px;
    padding: 5px 20px;
    border-radius: 15px;
    background-color: rgb(63, 218, 216);
    color: #ffffff;
}
a{
    text-decoration: none;
}
.about{
    background-color: rgb(26, 54, 68);
    color: #ffffff;
    height: 500px;
    padding: 4rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
h1{
    font-size: 3rem;
}
p{
    opacity: 0.5;
}
.grid-items{
    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 2rem;
    position: absolute;
    top: 450px;
    width: 50%;
    justify-content: center;
}
.hero-images{
    display: flex;
    justify-content: center;
    align-items: center;
}
