@import url('https://fonts.googleapis.com/css2?family=Poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    transition: .25s ease;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

.container {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-image: url("../res/bg0.png");
    background-position: center;
    background-size: cover;
    position: relative;
}

.container .hero {
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.6);
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.container .hero .navbar {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    z-index: 99;
}

.container .hero .navbar img {
    width: 45px;
    height: 45px;
}

.container .hero .navbar ul {
    width: auto;
    height: 30px;
    background: transparent;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    list-style: none;
    overflow: hidden;
    position: relative;
}

.container .hero .navbar ul li {
    width: auto;
    height: auto;
    background: transparent;
    padding: 0px 10px;
    display: flex;
    position: relative;
}

.container .hero .navbar ul li a {
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    color: #C8C8C8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.container .hero .navbar ul li a:hover {
    color: #d9d9d9;
    text-shadow: 0 0 2.5px #919191, 0 0 2.5px #919191, 0 0 2.5px #919191;
}

.container .hero .navbar ul li:nth-of-type(1n) {
    margin-left: 10px;
}

.container .hero .overlay {
    width: auto;
    height: auto;
    max-width: 300px;
    background: transparent;
    padding: 10px;
    display: block;
    justify-content: center;
    align-content: center;
    align-items: center;
    align-self: center;
    position: absolute;
    z-index: 99;
}

.container .hero .overlay h2 {
    width: auto;
    height: auto;
    color: #fff;
    background: transparent;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.container .hero .overlay h1 {
    width: auto;
    height: auto;
    color: #fff;
    background: transparent;
    text-transform: capitalize;
    font-size: 48px;
    font-weight: auto;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.container .hero .overlay .flex {
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-self: center;
    position: relative;
    margin-top: 5px;
}

.container .hero .overlay .flex a {
    width: auto;
    height: auto;
    min-width: 120px;
    background: #121212;
    padding: 2.5px 0px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-decoration: none;
    color: #C8C8C8;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    margin: 5px;
}

.container .hero .overlay .flex a:hover {
    color: #fff;
}

@media not screen and (min-width: 321px) {
    .container .hero .overlay h2 {
        font-size: 10px;
    }

    .container .hero .overlay h1 {
        font-size: 32px;
    }
}