/* load font from folder assets/font/helvicta.otf */
@font-face {
    font-family: 'Helvicta';
    src: url('font/helvicta.otf') format('opentype');
}

body {
    font-family: 'Helvicta', sans-serif;
}

.banner {
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}