/*-------------------------------*/
/* PRESETS */
/*-------------------------------*/
* {
    margin: 0;
    padding: 0;
    cursor: default;
}

html, body {
    height: 100%;
    max-width: 100%;
    scroll-behavior: smooth ease-in-out;
}

a {
    text-decoration: none;
    cursor: pointer;
}
  
body {
    overflow-x: hidden;
}
  
body a:hover {
    text-decoration: none;
}

::-webkit-scrollbar {
    overflow-x: hidden;
    display: none;
    visibility: hidden;
}


header {
    height: 100%;
    
}

header .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("imgs/bg.png") no-repeat center center;
    background-size: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

header .logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

header .logo-container img {
    height: 50px;
}


header .input-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding-right: 20px;
    border-radius: 100px;
}

header .input-container input {
    cursor: text;
    border: none;
    padding: 15px 25px;
    border-radius: 100px;
    font-family: sans-serif;
}

header .input-container input[type="text"]:focus {
    border: none;
    outline: 1px solid white;
}

header .input-container button {
    border: none;
    background-color: white;
}

header .input-container button img {
    height: 22px;
    margin-top: -5px;
}

header .input-container #clip-img {
    height: 30px;
    padding-left: 10px;
    cursor: pointer;
}


.pop {
    position: absolute;
    bottom: 20%;
    left: 35%;
    height: 200px;
    width: 30%;
    background-color: white;
    color: black;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    text-align: center;
    cursor: pointer;
}

.pop img {
    opacity: .4;
    height: 50px;
    cursor: pointer;
}