
body {
    background-color:black;
  }  

.container {
    display: flex;
    flex-direction: row;
    gap: 15px 20px;
    justify-content: center;
    overflow: hidden;
}
.container button{
    background-color:black;
    color: white;
    border: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    border-radius: 15px;
    width: 75px;
  }
  .container button:hover{
    background-color:gray;
    color: black;
    transition: ease-in 170ms;
    cursor: pointer;
    border: none;
    font-family: 'Roboto Mono', monospace;
    border-radius: 15px;
  }
  
  *{
    margin: 0.5vh;
    padding: 0;
  }

.containermain {
    display: flex;
    flex-direction: column;
  
  }
.lol{
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
}

.para{
    color: linen;
    font-size: 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.icons {
    font-size: 36pt;
    color: whitesmoke;
    word-spacing: 15px;
}
  
.icons a:hover {
    color: rgb(189, 189, 189);
    transition: ease-in 170ms;
    cursor: pointer;
}

.trial{
    display: flex;
    color: rgb(255, 255, 255);
    align-content: center;
    justify-content: center;
    height: fit-content;
}

.animation{
display: inline-block;
width: fit-content;
}

h1{
font-family: 'Rubik', sans-serif;
font-size: 5vw;
overflow: hidden;
border-right: .15em solid rgb(255, 255, 255);
white-space: nowrap;
animation: typing 1.5s steps(18, end) forwards;
width: 0;
}
.imgcont
{
    display: flex;    
    flex-direction: row;    
    justify-content: space-evenly;   
    flex-wrap: wrap;        
    width: 80vw;
    
}
.animg
{
    height: 20vh;
    width: 13vw;
    padding: 10px;
}

.animg:hover
{
    animation: jump 1s ease infinite;
}
@keyframes jump {
    0% {
      transform: scale(1);
      opacity: 0;
    }
    60% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }

@keyframes typing {
from{ width: 0%;}
to{width: 100%;}
}
  
a:link{
    text-decoration: none;
    color: red;
}

@media only screen and (max-width: 750px)
{
    .imgcont
    {        
        display: flex;
        
        flex-direction: column;
        
        justify-content: space-around;
        
        align-items: center;
    }

    .container {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      flex-direction: row;
      gap: 0rem;
      align-items: center;
      overflow-x: hidden;}
    
    .animg
    {
          height: 20vh;
          width: 25vw;
          padding: 5px;
    }
    }