
body {
    background-color:black;
  }

*{
    margin: 0.5vh;
    padding: 0;
}
.imagecont {
    position: relative;
    width: 50%;
}
  
.image {
    display: block;
    width: 100%;
    height: auto;
}
  
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}
  
.imagecont:hover .overlay {
    opacity: 1;
}
  
.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.container {
    display: flex;
    flex-direction: row;
    gap: 15px 20px;
    justify-content: center;
    overflow: hidden;
  }
.text a {
    color: white;
  }
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;
    white-space: nowrap;
}

.splitc {
    height: 50%;
    width: 100%;
    position: fixed;
  }
.top {
    top: 0;
    background-color: transparent;
}
.bottom {
    bottom: 0;
    background-color: transparent;
}
.container2 {
    display: flex;
    bottom: 0;
    flex-direction: row;
    gap: 20px;
    justify-content: center; 
  }
.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.34rem;
    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: 'Open Sans', sans-serif;
}

.icons {
    font-size: 2.5rem;
    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;
}

.container2 p{
    font-family: 'Lato', sans-serif; font-size: 20px; color:yellow;
}
@media only screen and (max-width: 750px)
{
    .container2 {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      flex-direction: column;
      gap: 0.67rem;
      align-items: center;}
      
      .imagecont {
        position: relative;
        width: 100%;
    }

    .container {
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        flex-direction: row;
        gap: 0rem;
        align-items: center;
        overflow-x: hidden;}
}
