/*CSS Style file for Siyashu's site*/


@font-face {
  font-family: "Mikalea";
  src: url("assets/fonts/Mikalea.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "SunlightDreams";
    src: url("assets/fonts/SunlightDreams.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Esconder la scrollbar*/
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0; /* remove scrollbar space */
background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
background: transparent;
}


/*Selection stuff*/
::selection {
/* Change highlight background color */
background: #ffffff;
/*Selection color*/
color: #FFFFFF;
}
/*Link color*/
a {text-decoration: none; color:rgb(178, 171, 243); }


/*Body style*/
body {
    background-attachment: fixed;
    background-repeat: repeat;
    background-image: url("assets/images/backgroundImage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*This is the main container, made with grid display*/
.MainContainer {
    row-gap: 10px;
    column-gap: 1px;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;

    margin: 0 auto;
    border-width: 7px;
    border-style: solid; 
    background-color: rgb(23, 23, 51);
    border-radius: 8px;
    border-color: rgb(23, 23, 51);
    
    width: 1000px;
    height: auto;
    
}












/*Siyashu web title*/
.TitleContainer {

    grid-area: 1 / 1 / 2 / 4;
    order: 1;

    font-size: 60px;
    font-family: 'Mikalea';
    color: white;
    letter-spacing: 2px;

    text-align: unset;
    display: flex;
    justify-content: left; 
    align-items: flex-end;
    padding-left: 10px;

    background-image: url('assets/images/titlebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 2px 2px 2px black;

    height: 150px;
}


.Title {
     transition: 1s;
   }
   
.Title:hover{
  letter-spacing: 7px;
}








.VerticalContainer {
    font-family: "SunlightDreams";
    letter-spacing: 0.5px;
    font-size: 20px;
    text-align: center;

    order: 2;
    grid-area: 2 / 1 / 3 / 2;


    position: static;
    box-sizing: border-box;
    height: 290px;
    width: 210px;

    border:3px solid rgb(34, 34, 63);
    background: rgb(34, 34, 63);
    border-radius:8px;
    padding: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;

}



.HomeButton {
    
    width: 180px;
    transition: 0.7s;
    border-radius: 8px;
    background-color: rgb(74, 62, 119);
}
.HomeButton:hover {
    background-color: rgb(95, 83, 138);
}

.ReviewsButton {
    width: 180px;
    transition: 0.7s;
    border-radius: 8px;
    background-color: rgb(74, 62, 119);
}
.ReviewsButton:hover {
    background-color: rgb(95, 83, 138);
}
.Note {
    color: rgba(255, 255, 255, 0.24);
    font-size: 16px;
    
}

.UpdateContainer {
    font-family: "SunlightDreams";
    color: whitesmoke;
    text-align: center;
    font-size: 22px;

    border:3px solid rgb(34, 34, 63);
    box-sizing: border-box;
    height: 200px;
    width: 210px;
    background: rgb(34, 34, 63);
    border-radius:8px;
    padding: 3px;
    flex-shrink: 0;

    
    align-items: center;
    flex-direction: column;
    gap: 100px;
    overflow-y: auto;
    overflow-x: hidden;
    
}


.UpdateContainer::-webkit-scrollbar {
    width: 8px;
}

.UpdateContainer::-webkit-scrollbar-thumb {
    background: #3e4752;
    border-radius: 4px;
}

.UpdateContainer::-webkit-scrollbar-track {
    background: #333b3f;
}

.UpdateLog {
    font-family: "SunlightDreams";
    color: whitesmoke;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    height: auto;
    width: 190px;
    outline: solid rgb(97, 97, 136) 3px;
    background-color: rgb(97, 97, 136);
    border-radius: 8px;
    margin-top: 7.5px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 12px black;
}


/*The scrollable box*/
.TextContainer {  
    box-sizing: border-box;
    padding: 0px; 
    width: 760px; 
    /*height: 240px;*/ 
    
    
    grid-area: 2 / 2 / 4 / 4;
    
}


.ScrollText {
    font-family: "SunlightDreams";
    color: whitesmoke;
    letter-spacing: 0.5px;
    font-size: 42px;
    text-shadow: 2px 2px 18px black;
    box-sizing: border-box;
    width: auto;
    height: 500px;
    border: 3px solid rgb(34, 34, 63);
    background: rgb(34, 34, 63);
    border-radius: 8px;
    padding: 3px;

    /* !!In case of background usage
    
    background-image: url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    */

    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.7s;
    text-align: center;
}

.IntroductionText {
    font-size: 22px;
    text-align: center;
}

.ParagraphText {
    font-size: 22px;
    text-align: justify;
}

.CenterText {
    font-size: 24px;
    text-align: center;
}





.ScrollText:hover {
    background-color: rgb(43, 43, 75);
}

.ScrollText::-webkit-scrollbar {
    width: 8px;
}

.ScrollText::-webkit-scrollbar-thumb {
    background: #3e4752;
    border-radius: 4px;
}

.ScrollText::-webkit-scrollbar-track {
    background: #333b3f;
}




   

