/* Add custom font */
@font-face {
    font-family: Hongbin;
    src: url(font.otf);
}

/* Reset  code ( shortcut manuaally created) */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    height: 100vh;
    width: 100vw;
    background-image: url(hongbin.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Add color overlay */
.overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.863);
}
h1{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    font-family: Hongbin;
    color: white;
}
