/* global */
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.cdnfonts.com/css/dm-mono-2');


.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

body{
    margin: 0;
    padding: 0;
    /*font-family: 'Roboto', sans-serif; */
    font-family: 'DM Mono', sans-serif;
    background-color: #101827;
    color: #7A7C80;
}

h2,.white{
    color: #fff;
    transition: 0.3s;
}

a{
    color: #7A7C80;
    text-decoration: none;
}
/* section 1 */
.section-1{
    padding-top: 40vh;
    text-align: center;
}

.section-1 p{
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-1 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a{
    font-size: 1.5rem;
    padding: 10px;
}
/* section 2 */
.section-2{
    padding-top: 10vh;
    width: 70%;
}

.section-2 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.section-2 p{
    font-size: 1.1rem;
    padding-bottom: 18px;
    margin:0;
}
.section-2 h{
    font-size: 1.0rem;
    padding-bottom: 10px;
    margin:0;
    word-break: normal;
}
.section-2 u{
    font-size: 1.1rem;
    padding-bottom: 18px;
    margin:0;
    text-decoration: #f00 wavy underline;
    text-decoration-thickness: 2px;
    font-weight: bold;
    color: #9c9c9c;
    transition: 0.3s;
}
.section-2 a{
    display: block;
    padding: 5px;
    font-size: 1.2rem;
    padding-left: 0;
    width: 100px;
}

.section-2 a:hover{
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.section-1 a:hover{
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.section-2 a1{
    font-size: 1.0rem;
    padding-bottom: 10px;
    margin:0;
    word-break: normal;
    position: relative;
}
.section-2 a1::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #f00;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  @media (hover: hover) and (pointer: fine) {
    .section-2 a1:hover::before{
      left: 0;
      right: auto;
      width: 100%;
      cursor: auto;
    }
  }
.white:hover{
    position: relative;
    padding-left: 10px;
}
.Avatar{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    border: 5px solid #fff;
    transition: 0.3s;
}
:root{
    --bs-dark: #101827;
  }
  
  .theme-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }
  
  .theme-container:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  
  .shadow-dark {
    background: linear-gradient(145deg, #101827, #1e2125);
    box-shadow: 17px 17px 23px #1a1d20,
      -17px -17px 23px #282d32, inset 5px 5px 4px #1e2226,
      inset -5px -5px 4px #24282c;
  }
  
  .shadow-light {
    box-shadow: 7px 7px 15px -10px #bbcfda, -4px -4px 13px #c4c4c4,
      inset 7px 7px 3px rgba(209, 217, 230, 0.35),
      inset -11px -11px 3px rgba(255, 255, 255, 0.3)
  }
  
  @keyframes change {
    0% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(1.4);
    }
  }
  
  .change {
    animation-name: change;
    animation-duration: 1s;
    animation-direction: alternate;
  }
/* media queres */
@media(max-width:780px){
    .grid-2{
        grid-template-columns: 1fr;
    }
    .section-1{
        padding:0;
        padding-top: 5rem;
    }
    .section-2{
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}