@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;300;400;500;600;700&display=swap');

/*SCROLL*/

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #252525;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: black;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #fff;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 500;
}

h4 {
    font-weight: 400;
}

h5 {
    font-weight: 300;
}

h6 {
    font-weight: 100;
}

body{
    background-color: #121212;
    min-width: 400px;
}

/*PRELOADER*/

#preloader {
    background: #000 url(/images/loader.gif) no-repeat center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.preloader-render {
    display: none;
}

/*MENU*/

.main-logo {
    text-align: center;
    padding: 50px;
}

.main-logo img {
    height: 80px;
    cursor: pointer;
    transition: 0.3s ease 0s;
}

.main-logo img:hover {
    transform: scale(1.1);
}

.main-menu {
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 400px));
    column-gap: 10px;
    row-gap: 10px;
}

.main-menu a {
    transition: 0.3s ease 0s;
}

.main-menu a:hover{
    transform: scale(1.1);
}

.main-menu img {
    border-radius: 15px;
    width: 400px;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.main-menu h1 {
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    position: absolute;
    padding-left: 20px;
    padding-top: 20px;
}

.main-menu h6 {
    text-decoration: none;
    color: #fff;
    position: absolute;
    padding-left: 20px;
    padding-top: 55px;
}