@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.debug {
    border: solid crimson 1px !important;
}

body {
    margin: 0;
    /* padding: 0 2%; */

    font-family:  "Gabarito", Geneva, sans-serif;
    font-optical-sizing: auto;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-weight: 400;
    color: white;
    overflow-x: hidden;
}
a {
    cursor: pointer;
    text-decoration: none;
}
p {
    padding: 0;
    /* margin: 0; */
}
#header {
    width: 100%;
    display: flex;
    z-index: 1;
    position: fixed;
    top:0;
}
#header a {
    /* background-color: #1a1a1a; */
    transition-duration: 0.1s;
}
.header-item {
    margin: 12px 16px;
    padding: 10px 14px;
    font-size: 18px;
}
.header-item-img {
    margin: 16px 10px 12px 0px;
    min-width: 36px;
    justify-content: center;
    align-items: center
}
.header-item-img img {
    width: 20px;
    padding: 6px;
}
.main {
    margin-top: 10vh;
    margin-left: 10%;
    width: 80%;
}
#three-dee-container {
    width: 120vw;
    height: 72vh;
    top: 0;
    position: absolute;
    z-index: -2;
    display: block;
}

.hide {
    display: none !important;
}
.name-holder {
    cursor: default;
    flex-direction: column;
    align-items: center;
    display: none;
    margin: 10rem 0 0 0;
}
#placeholder-main-page {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .main {
        margin-top: 14vh;
        width: 96%;
        margin-left: 2%;
    }
    #three-dee-container {
        display: none;
    }
    .name-holder {
        display: flex;
    }
    #placeholder-main-page {
        display: none;
    }
}

