* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}



#parent {
    height: 100%;
    width: 100%;

}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    width: 100%;
    height: auto;
}

#logo>img {

    max-width: 100%;
    height: 18px;
    padding-left: 120px;

}

#nav-items {
    width: 45%;
    display: flex;
    justify-content: space-evenly;
    margin-right: 80px;
    align-items: center;
}

#nav-items h4 {
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
    color: rgba(0, 0, 0, 0.623);
}

#image img {

    /* display: flex; */
    display: block;
    margin: 0 auto;
    padding-top: 60px;
    width: 53%;
    height: 50%;

}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 20%;
    margin-top: 50px;

}

#info h1 {
    font-family: sans-serif;
    color: rgba(0, 0, 0, 0.781);
    font-size: 44px;
    font-weight: 500;
}

#info h3 {
    margin-top: 15px;
    font-family: sans-serif;
    color: rgba(0, 0, 0, 0.781);
    font-size: 20px;
    font-weight: 500;
}

button{
    margin-top: 45px;
    border-radius: 2px;
    border: none;
    padding: 10px 30px;
    font-size: large;
    font-weight: 600;
    color: white;
    background-color:#387ed1;
    margin-bottom: 100px;
}