@font-face{
    font-family: poppins-bold;
    src: url(/fonts/Poppins-Bold.ttf);
}

@font-face{
    font-family: poppins-regular;
    src: url(/fonts/Poppins-Regular.ttf);
}

body{
    margin: 0;
    background-color: #0d1017;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content model-viewer{
    height:20rem;
}

.content span{
    color: white;
    font-family: poppins-regular;

}

.content a{
    text-decoration: none;
    color: white;
}

.content a:hover{
    color: #5A5A5A;
}

.content h1{
    margin-top: 2rem !important;
    display: block;
    color: white;
    font-family: poppins-bold;
    letter-spacing: .15em;
}

footer{
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    bottom: 5%;
}

footer a{
    align-items: center;
    outline: none;
    justify-content: center;
    text-decoration: none;
    margin-left: 1rem;
    margin-right: 1rem;
    color: #5A5A5A;
    transition: color 0.3s;
    font-size: 2rem;
}

footer a:first-child{
    margin-left: 0%;
}

footer a:last-child{
    margin-right: 0%;
}

footer a:hover{
    color: white;
}