:root {
    --main-color: #BF7F00;
    --second-color: #1F1F1F;
    --white: #FFFFFF;
    --black: #000000;
    --text-size: calc(14px + (13 - 10) * ((100vw - 320px) / (1200 - 320)));
    /* --font-family: 'Brush Script MT', cursive; */
    /* --font-family: Consolas,"courier new"; */
    --font-family: Optima, sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    /* background-color: #1F1F1F; */
    background: url(../imgs/background.jpg) no-repeat center center fixed;
    background-size: cover;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard syntax */
}

img {
    user-drag: none; /* Standard syntax */
    -webkit-user-drag: none; /* Safari */
    -khtml-user-drag: none; /* Konqueror */
    -moz-user-drag: none; /* Firefox */
    -o-user-drag: none; /* Opera */
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    color: var(--black);
    font-size: var(--text-size);
}

a {
    color: var(--black);
}

img {
    border-radius: 6%;
}

.center {
    text-align: center;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px;
    background-color: var(--second-color);
    text-align: center;
}
.navbar:hover {
    background-color: #101010;
}

.navbar img {
    width: 60px;
    padding: 1px;
    object-fit: contain;
}

.navbar nav {
    position: absolute;
    bottom: 35px;
    width: 100%;
    right: 30%;
}
.navbar a {
    display: inline-flex;
    position: relative;
    font-size: 18px;
    margin: 0 12px;
    /* text-transform: uppercase; */
    color: white;
    text-decoration: none;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.navbar a:hover::after {
    transform: scaleX(1);
}

.navbar .ip {
    background-color: transparent;
    border-top: solid 3px var(--main-color);
    border-left: solid 3px var(--main-color);
    position: absolute;
    bottom: 20px;
    left: 75%;
    width: 150px;
    height: 45px;
}
.navbar .ip p {
    color: var(--white);
    font-size: 17px;
}
.navbar .ip:hover {
    cursor: pointer;
}

@media(max-width: 900px) {
    .navbar nav, .navbar .ip {
        display: none;
    }
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 50px;
    column-gap: 50px;
}
.hero .container .welcome {
    text-align: center;
    width: fit-content;
}
.hero .container .image img {
    height: 250px;
    object-fit: contain;
    border-radius: 50px;
}
.hero .container .welcome p {
    margin-top: -20px;
    color: darkgray;
    width: 50ch;

    margin-left: auto;
    margin-right: auto;
}

.hero h4 {
    color: white;
    text-transform: capitalize;
    text-decoration: underline;
}

.hero .links {
    height: 50px;
    width: 150px;
    border-radius: 20px;
    background-color: #3d3d3d;
    display: flex;
    column-gap: 14px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
}
.hero .links img {
    margin-top: 5px;
    height: 40px;
    object-fit: contain;
}

#preloader {
    background: #000 url(../imgs/preloader.gif) no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 200000 !important;
}