
/* 
========================================================================
CSS RESET from http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126
========================================================================
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 
========================================================================
========================================================================
*/


:root[data-theme="dark"] {

    --text-box-hover-outline-color:  rgba(255, 255, 255, 0.8);
    --icon-light-color: rgba(255, 255, 255, 0.251);
    --text-box-outline-color: rgba(255, 255, 255, 0.336);
    --time-color: #ffffffa5;
    --background-color: #090d11;
    --text-box-color: #162028;
    --text-color: rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] {
    --text-box-hover-outline-color:  rgb(255, 255, 255);
    --icon-light-color: rgba(255, 255, 255, 0.251);
    --text-box-outline-color: rgba(182, 1, 1, 0.336);
    --time-color: #000000a5;
    --background-color: #090d11;
    --text-box-color: #ffffff;
    --text-color: rgba(0, 0, 0, 0.8);
}



body, * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

a {
    text-decoration: none;
    color:var(--text-color);
}


html::-webkit-scrollbar {
    display: block !important; 
    width: 6px !important;    
}

html::-webkit-scrollbar-track {
    background: transparent;    
}

html::-webkit-scrollbar-thumb {
    background-color:   #ffffff79;
    border-radius: 10px;                  
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff79;
}


html {
    scrollbar-width: thin !important;        
    scrollbar-color:  #ffffff79 transparent !important;
}




* {
    box-sizing: border-box;
}



html {
    color: var(--text-color);
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1rem;
    font-style: normal;

}

body {
    background-color: var(--background-color);
    width: 100vw;
    height: fit-content;
    min-height: 100%;
    display: flex;
    justify-content: center;
}

p {

    line-height: 1.65;           
    letter-spacing: -0.01em;     


}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    width: 100%;
    letter-spacing: 2px;
    text-align: left;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;

}

button {
    border: 0;
}

#container {
    z-index: 3;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 95%;
    height: fit-content;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;

}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;

    gap: 20px;



}

article {
    background-color: var(--text-box-color);
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}



header {

    width: 95%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

footer {

    width: 95%;
    color: #ffffff73;

}

.article-imgs {
    width: 100%;
}

nav {
    width: 140px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 700;


}

nav a {
    color: #ffffff9c;
    cursor: pointer;
}
#nav-and-button {

    width: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

#dark-or-light-button {

    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

#icon-and-title {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

#icon-light {
    position: absolute;
    z-index: -1;
    left: 25px;
    box-shadow: 0 0 40px 25px var(--icon-light-color)
}

#website-icon {
    margin-left: -15px;
    margin-right: -15px;
    width: 80px;
    height: 80px;
    image-rendering: pixelated;     
    image-rendering: crisp-edges;
}

#title {
    color: #ffffff54;
    font-family: "Rubik Mono One", monospace;
    font-weight: 200;
    font-style: normal;
    margin-top: 10px;
    font-size: 1.2rem;
    

}

#lamp-icon {
   color: #ffffff;
}

time {

    color: var(--time-color);
    width: 100%;
    font-size: 0.9rem;

}

.title-span {

    color: #ffffffa5;
}

#index-main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

}

.box-type-1 {
    width: 95%;
    display: flex;
    aspect-ratio: 1 / 0.7;
    flex-direction: row;
    gap: 16px;  

}
.item-1 {

    background-color: var(--text-box-color);
    padding: 15px;
    min-width: 50%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    outline: 1px solid var(--text-box-outline-color);
    position: relative;
    overflow: hidden;
}
.item-2,.item-3 {

    background-color: var(--text-box-color);
    padding: 20px;
    width: 100%;
    
    outline: 1px solid var(--text-box-outline-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;

    overflow: hidden;


}

.item-1:hover, .item-2:hover, .item-3:hover,.item-4:hover, .item-5:hover, .item-6:hover {

    outline: 1px solid var(--text-box-hover-outline-color);

}

.inner-box {

    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

#input-container {

    width: 95%;
    display: flex;
    justify-content: space-between;

}

input {
    font-size: 0.8rem;
    padding-left: 4px;
    color: rgba(255, 255, 255, 0.547);
    background-color: #0f161c;
    border: 1px solid rgba(255, 255, 255, 0.336);
}

input:focus {
    outline: 0;
    border: 1px solid white;
}



.index-titles {
    font-size: 1.4rem;
    font-weight: 600;
    width: 100%;

    text-align: left;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
}


.index-itens-bottoms {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--text-box-color) 80%,
    var(--text-box-color) 100%
  );

    position: absolute;
    width: 100%;
    height: 53px;
    left: 0;
    bottom: 0;
}

.box-type-2 {

    width: 95%;
    display: flex;
    aspect-ratio: 1 / 0.7;
    flex-direction: row;
    gap: 16px; 

}

.inner-box-2 {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inner-box-3 {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-4 {

    background-color: var(--text-box-color);
    padding: 20px;
    width: 100%;
    height: 55%;
    outline: 1px solid var(--text-box-outline-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;

    overflow: hidden;
}



.item-5 {
    background-color: var(--text-box-color);
    padding: 20px;
    width: 100%;
    height: 45%;
    outline: 1px solid var(--text-box-outline-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.item-6 {

    background-color: var(--text-box-color);
    padding: 20px;
    width: 100%;
    height: 100%;
    outline: 1px solid var(--text-box-outline-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;

}


#stop-cruelty {
    width: 200px;
    padding: 20px;


}


.widget {

    padding-top: 40px;
    min-width: 240px;
    height: fit-content;
    background-color: rgb(2, 85, 89);
    background-color: var(--text-box-color);
    display: flex;
    flex-direction: column;
    font-family: "Rubik", sans-serif;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.widget p {
    letter-spacing: 2px;
}

.widget-text {
    width: 70%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.7rem;
    padding: 10px;
}


#rain {

  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 0;

  background-size: cover;
}

.drops {
    border-radius: 50%;
    background-color:rgba(255, 255, 255, 0.192);

    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.205));
    position:absolute;
    width:2px;
    height:10px;
    transform: rotate(-12deg);
}
