@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

body{
    background-image: url(/assets/images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow: hidden;
}

main{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 90vh;
    display: flex;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80vw;
    height: 40vh;
}

.button{
    background-color: #FFC107;
    border: none;
    border-radius: 5px;
    padding: 15px 50px;
    font-size: 20px;
    color: white;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.disclaimer{
    font-size: 0.8rem;
    font-weight: 100;
    margin-top: 10px;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    background-color:#232323;
}

footer div{
    margin: 0 10px;
}

model-viewer{
    margin-top: 0px;
    height: 60px;
}

.viewerContainer{
    margin-top: 50px;
}

.mobile{
    display: none;
}

@media screen and (min-width: 768px){
    .container{
        display: none;
    }
    .mobile{
        display: block;
    }
}