@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: Jeju;
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/JejuGothic-Regular.ttf);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-weight: 400;
    color: #fff;
    background-color: #171717;
    background: linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .36)), url(/assets/images/bg.jpg), #171717 fixed;
    background-size: cover;
    background-position: center center;
    display: flex;
    height: 100%;
    background-attachment: fixed;
}

.fadeUp {
    opacity: 0;
    animation: fade .5s ease-in-out forwards;
}

@keyframes fade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}

.content {
    padding: 0px 100px 50px 100px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.searchwidget {
    display: inline-block;
    position: absolute;
    top: calc(65px + 1rem);
    right: 100px;
    padding: 20px;
    background-color: rgba(24, 24, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: none;
    opacity: 0;
    animation: fadeDown .4s ease-in-out forwards;
    transform: translateY(-10px);
}

.searchwidget input {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    outline: none;
    border-radius: 3px;
    color: #fff;
    padding: 4px;
}

a[href] {
    color: #fff;
}

.tglink {
    margin-left: 100px;
    margin-bottom: 40px;
    color: #a0a0a0;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-label {
    z-index: 999;
    color: #fff;
    position: fixed;
    bottom: 20px;
    padding: 10px;
    background: rgb(255, 127, 80);
    border-radius: 3px;
    left: 20px;
    opacity: .4;
    font-family: sans-serif;
}

.admin-logout {
    padding: 0 10px;
}

@keyframes fadeDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.title {
    font-weight: 700;
}