Untuk memusatkan setiap konten dalam HTML

section {
    width: 100%;
    height: 100vh;
    background-color: teal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
Vikash Choubey