@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Montserrat&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    color:#fffffF;
}

a {
    text-decoration: none;
    color: #ede97a;
}

::selection {
    background: #ede97a;
  }

  /* width */
::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: rgb(210, 210, 210); 
    /* box-shadow: inset 0 0 5px grey; */
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #70c688; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #409b82; 
  }

/* 1-st frame style */
.wrapper {

    position: absolute;
    top: 0; 
    left: 0;
    bottom: 0;
    right: 0;
}

#frame-1 {
    height: 100%;
    background: radial-gradient(#70c688,#409b82);

}

#frame-1-sub {
    height: 100%;
    background: radial-gradient(#ecff3e,#f2058b);
}

/* first row */
.row-1 {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    padding: 10px;
  }
.row-2 {
    font-family: 'Amatic SC', cursive;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    height: 80%;
    padding: 10px;
    vertical-align: middle;
    align-content: space-around;
    justify-content: center;
  }
.row-3 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    /* padding: 10px; */
  }

/* logo */
.logo {
    padding: 16px;
    font-weight: bold;
    
}

.logo a {
    color: #ffffff;
}

/* menu */
.menu {
    display: grid;
    justify-content: end;
    margin-right: 5em;
}

.menu a {
    color: #fffffF;
}

.menu li {
    list-style-type: none;
    float: left;
    padding-left: 5em;
}

/* second row */
.my-name {
    font-size: 2.5em;
    text-align: right;
    display: grid;
    align-items: center;
    align-content: center;
    line-height: 1em;
}

.my-name span {
    font-weight: bold;
    font-size: 1.5em;
}

.my-face {
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.my-face img{
    margin: 0 auto;
}

.my-skill {
    font-size: 2.2em;
    display: grid;
    align-items: center;
    align-content: center;
    line-height: 1em;
}

ul.skill-list li {
    margin-bottom: 20px;
}

ol.work-list li {
    margin-bottom: 20px;
}

.current-work {
    font-size: 1.2em;
}

.current-work span {
    font-size: 1.5em;
    font-weight: bold;
}

/*
.skill{
    
}
*/

/* footer row */
.scroll-line {
    width: 1px;
    height: 40px;
    background-color: #ede97a;
    margin: 0 auto;
}

/* 2-nd frame style */
#frame-2 {
    color: #ffffff;
    padding: 2.5em;
    background-color: #090e17;
}

#frame-3 {
    color: #090e17;
    padding: 2.5em;
    background-color: #ffffff;
}


.central-column {
    width: 50%;
    margin: 0 auto;
}


/* First frame effects */

.bob--primary .bob__heading {
    -webkit-text-stroke: 2px var(--primary);
    filter: drop-shadow(0 0 .35rem var(--primary))
}

.bob--secondary .bob__heading {
    background: radial-gradient(circle at center,#fff .11rem,transparent 0);
    background-size: .4rem .4rem;
    -webkit-background-clip: text;
    background-clip: text;
    color:#f2058b
}

.bob--secondary {
    --mask: radial-gradient(circle at var(--x,50%) var(--y,50%),#000 var(--maskSize1,0%),rgba(0,0,0,0.1) calc(var(--maskSize1, 0%) + 0.1%),transparent 0,transparent var(--maskSize2,0%),rgba(0,0,0,0.1) calc(var(--maskSize2, 0%) + 0.1%),#000 var(--maskSize2,0%),rgba(0,0,0,0.1) calc(var(--maskSize3, 0%) - 0.1%),#000 var(--maskSize3,0%),rgba(0,0,0,0.1) calc(var(--maskSize3, 0%) + 0.1%),transparent 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: var(--gradientBg);
    color: #090e17;
    -webkit-mask-image: var(--mask);
    mask-image: var(--mask)
}

