/***************/
/*** IMPORTS ***/
/***************/

@font-face {
    font-family: 'GlacialIndifference Regular';
    src: url('fonts/glacial-indifference/GlacialIndifference-Regular.otf') format('truetype');
}
@font-face {
    font-family: 'GlacialIndifference Italic';
    src: url('fonts/glacial-indifference/GlacialIndifference-Italic.otf') format('truetype');
}



/****************/
/*** WRITINGS ***/
/****************/

h1 {
    display: block;
    margin: 20px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 50px;
    font-weight: 100;
    color : #fff;
    text-align: center;
}


label {

}

h2 {
    position: relative;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 25px;
    display: block;

}

p {
    font-family: 'GlacialIndifference Regular', sans-serif;
    text-align: justify;
    color: #fff;
    opacity: 0.5;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}



/**************/
/* BACKGROUND */
/**************/

body {
    background-color: #111;
    margin: 0;
    padding: 60px;
    padding-bottom: 0px;
    height: calc(100vh - 80px);
}

.layer_wrapper {
    z-index:-1;
    overflow: hidden;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;

}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
}



/**************/
/* SITES */
/**************/

.site-item-div {
    background-color: rgba(50, 50, 50, 0.75);
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 0 20px #ff6b0030;
    margin: 20px;
}

.site-item {
    display: inline-block;
    margin-right: 20px;
    padding: 0 20px;
    list-style-type: none;
}

.site-status-dot {
    display: inline-block;
    margin-right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: grey;
}

.site-status-label {
    margin-right: 20px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
}

.site-link {
    display: inline-block;
    margin-right: 20px;
    text-decoration: underline dotted #bb6e33;
    font-family: 'GlacialIndifference Regular', sans-serif;
    color: #fff;
} .site-link:hover {
    color: #bb6e33;
}

.lock-icon {
    margin-right: 20px;
    font-size: 20px;
    color: #fff;
}


/************/
/* SEARCHER */
/************/

.search-container-rel {
    position: relative;
    margin: 20px auto;

}

.search-container {
    display: inline-block;
    position: absolute;
    width: 20%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: rgba(53, 53, 53, 0.5);
    padding: 10px;
    border-radius: 20px;
    left: -999px;
    right: -999px;
}

.search-container input {
    display: inline-block;
    position: relative;
    width: 200px;
    padding-bottom: 5px;
    outline: none; 
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 2px;
    background-color: transparent;
    font-family: 'GlacialIndifference Regular', sans-serif;
    color: white;
}

.search-container input:focus {
    border-bottom-color: #bd8306;
}

