:root {
    --main-color: white;
    --main-bg-color:black;
    -webkit-font-smoothing: antialiased;
}

* {
    font-family: 'Akkurat-mono';
    font-weight: 300;
    letter-spacing: -0.5px;
    font-size: 20px;
    text-decoration: none;
    margin: 15px;
    color: var(--main-color);
}

body{
    background-color: var(--main-bg-color);
    overflow: hidden;
    height: 100%;
    width: 100%;
    
}

.wrapper {
    height: 100%;
    width: 100%;
}

.link {
    font-family: 'Akkurat-Mono';
    font-weight: 200;
    text-decoration: capitalize;
    color: white;
}

.link:hover{
    cursor:pointer;
    color: #90e0ef;
}

span.top-left{
position: absolute;
top: 0;
left: 0;
}

span.top-right{
   position: absolute;
   top: 0;
   right: 0;
}

span.bottom-right{
   position: absolute;
   bottom: 0;
   right: 0;
   
}

span.bottom-left{
    position: absolute;
    bottom: 0;
    left: 0;
    
}



a:hover {
    text-decoration: none;
    color: #dedede;
}

.bg-holder img{
    opacity:4;
    width:calc(100%/2.5);
    max-width: 100%;
}


/*img:hover{
    opacity: 4;
    width: calc(100%/2.5);
    -webkit-animation:spin 150s linear ;
    animation:spin 180s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}*/


.bg-holder{
    display: flex;
    justify-content: center;
    padding-top: 5%;
}

@media only screen and (max-device-width: 480px) {
    body {
        background-color: black;
        text-align: center;
        font-size: 30;
    }
}
