html{
    scroll-behavior: smooth;
  }
.main{
    overflow: scroll;
  }
body {
    background-color:black;
  }  
  *{
    margin: 0.5vh;
    padding: 0;
  }

.container {
    display: flex;
    flex-direction: row;
    gap: 1rem 1.34rem;
    justify-content: center;
    overflow: hidden;
  }
button{
    background-color:black;
    color: white;
    border: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    border-radius: 1rem;
    width: 5rem;
    white-space: nowrap;
}
button:hover{
    background-color:gray;
    color: black;
    transition: ease-in 170ms;
    cursor: pointer;
    border: none;
    font-family: 'Roboto Mono', monospace;
    border-radius: 1rem;
}

.splitc {
    height: 50%;
    width: 100%;
    position: fixed;
  }
.top {
    top: 0;
    background-color: transparent;
}
.bottom {
    bottom: 0;
    background-color: transparent;
}


.lol{
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
}

.frontpage1{
    color: rgb(255, 255, 255);
    font-size: 3.34rem;
    text-align: center;
    font-family: 'Rubik', sans-serif;;
}
  
.frontpage1a{
    color: rgb(255, 255, 255);
    font-size: 2.33rem;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}
  
.frontpage2{
    color: rgb(200, 245, 0);
    font-size: 1.67rem;
    text-align: center;
}
  
.para{
    color: linen;
    font-size: 1.34rem;
    text-align: center;
    font-family: 'Nunito', sans-serif;;
}

.icons {
    font-size: 2.4rem;
    color: whitesmoke;
    word-spacing: 1rem;
}
  
.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: 7vw;
overflow: hidden;
border-right: .15em solid rgb(255, 255, 255);
white-space: nowrap;
animation: typing 1.5s steps(18, end) forwards;
width: 0;
}

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

.containermain {
    display: flex;
    flex-direction: column;
  
  }

@media only screen and (max-width: 750px)
{
    .container {
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        flex-direction: row;
        gap: 0rem;
        align-items: center;
        overflow-x: hidden;}}