html{
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    cursor: none;
}
#canvas{
    background-color: #2c343f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.content{
    font-family:monospace;
    position: relative;
    z-index: 1;
    cursor: default;
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color:#fff;
}

.logo{
    padding: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 50%;
    height: 50%;
}

.headings h1{
    font-size: 4rem;
}

.headings h3{
    opacity: 0.75;
}

.experiences{
    display: flex
}

.experiences>*{
    margin-right: 1.5rem;
}

.experiences>*:last-of-type{
    margin: 0;
}

.socials a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0.001rem solid #6e66ff;
    padding: 0.5rem;
    border-radius: 50%;
    margin-right: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.85;
}


.socials a:last-of-type{
    margin: 0;
}

.socials a svg{
    fill: #fff;
    width: 19px;
    height: 18px;
    transition: all 0.3s ease;
}

.socials a:hover {
    opacity: 1;
}

.socials a:hover svg{
    fill: #6e66ff;
}

@media (max-width: 768px) {
  .headings h1 {
    font-size: 1.8rem;
  }
  .headings h3 {
    padding: 0 1rem;
  }
}
