﻿* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: ProximaNovaThin;
    src:
        url(./fonts/ProximaNova-Thin.woff2) format('woff2'),
        url(./fonts/ProximaNova-Thin.woff) format('woff');
}

@font-face {
    font-family: ProximaNovaRegular;
    src:
        url(./fonts/ProximaNova-Regular.woff2) format('woff2'),
        url(./fonts/ProximaNova-Regular.woff) format('woff');
}

@font-face {
    font-family: ProximaNovaSemibold;
    src:
        url(./fonts/ProximaNova-Semibold.woff2) format('woff2'),
        url(./fonts/ProximaNova-Semibold.woff) format('woff');
}

html {}

body {
    background-color: #f2f2f2;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #4d4d4d;
}

body * {
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#content {
    margin: 3em;
    display: flex;
    flex-direction: column;
    gap: 2em;
	background:white; 
	position:relative
}

#logo {
    display: block;
    height: 30px;
    max-width: 300px;
    width: auto;
}

h1 {
    font-family: ProximaNovaSemibold, sans-serif;
    font-size: 2rem;
    margin: 1em 0 0.2em 0;
}


p {
    font-family: "ProximaNova-Thin", sans-serif;
    font-size: 1.25rem;
    margin: 0
}

model-viewer {
    width: 100%;
    height: auto;
    aspect-ratio: 0.7;
    background-color: white;
}

::part(default-ar-button) {
    transform: scale(1.5);
    top: 2.3em;
    left: 2.3em;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	cursor:pointer;
}

.show {
	transform:translateY(-100px);
	backroud:transparent;
	border:none;
	outline:1px solid white;
	padding: 4px 10px;
    background: transparent;
    color: white;
	cursor:pointer;
}



/* // Breakpoints */
@media (orientation: landscape) {
    #content {
        flex-direction: row;
    }

    model-viewer {
        height: 80vh;
        width: auto;
        max-height: 40em;
    }
}