@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400");
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&family=Tilt+Prism&display=swap');
/* font-family: 'Alata', sans-serif; */
/* font-family: 'Comfortaa', cursive; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #171a1d;
    color: #fff;
}

body {
    height: 100%;
    color: white;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

body.hide-scrolling {
    overflow-y: hidden;
}

/*----------------------
  Custom Scrollbar 
  ------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgb(8, 8, 8);
}

::-webkit-scrollbar-thumb {
    background-color: #6f36b9;
}

/* navbar css */
.Navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, .4);
    position: fixed;
    top: 0px;
    width: 100%;
    max-height: 70px;
    padding: 5px 10px;
    z-index: 250;
}

.section-1-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.section-1-header-logo img {
    height: 50px;
}

.tag-container,
.input-group,
.input-group-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
}

.tag {
    background-color: #000408;
    color: #fff;
    border-radius: 3px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tag-remove {
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 6px 8px;
    margin-left: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logo-text {
    font-family: 'Comfortaa', cursive;
    margin-left: 3px;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    background: transparent;
}

.section-1-header-items {
    background-color: rgba(0, 0, 0, -0.0) !important;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    z-index: 250;
}

#dropdown {
    position: relative;
    height: 50px;
    border-radius: 4px;
    width: 150px;
    left: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#dropdown button {
    height: 50px;
    border-radius: 4px;
    width: 150px;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
}

.section-1-header-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 4px;
}

.main {
    position: absolute;
    width: 99%;
    top: 40px;
    padding: 20px;
    margin: 10px;
    justify-content: center;
    align-items: center;
}


.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 100%;
}

.container-input {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.container img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.output p {
    border: 1px solid rgb(255, 255, 255);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    height: 100px;
}