/*
* Author: 	HkDevelopers
* Date: 	10/10/2021
* Purpose: 	Style the page
* License: 	Not for commercial use
* Link:     www.hkdevs.tech
*/
/* HkDevs custom styles*/
/* @import url('globals.css'); */
@import url('tw-elements.min.css');

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

html{
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

html.sr .reveal {
    visibility: hidden;
}

body{
    background-color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.navbar-ul li{
    text-align: right;
    margin: 0 30px;
}

img{
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
}

.container{
    width: 100%;
    max-width: 95vw !important;
    margin: 0 auto;
}