@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,700;1,700;1,800&display=block";


body, html {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: black;

    width: 100%;

    font-family: Montserrat !important;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}

html {
    overflow: hidden;
    height: 100%;
}

body {
    overflow: auto;
    height: 100%;
}

main {
    width: 90%;
    max-width: 300px;
    padding: 40px 0;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

main > div.logo-wrapper {
    margin-bottom: 40px;
    max-width: 100%;
    padding: 0 64px;
}

main > div.logo-wrapper > img {
    max-width: 100%;
    object-fit: contain;
}

main > div.menu-wrapper {
    width: 300px;
    padding: 32px 0;
    
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);

    box-sizing: border-box;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 8px;
}

main > div.menu-wrapper > ul.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 17px;
}

main > div.menu-wrapper > ul.menu > li:not(:first-child) {
    margin-top: 16px;
}

main > div.menu-wrapper > ul.menu > li:not(:last-child) {
    position: relative;
    padding-bottom: 17px;
}

main > div.menu-wrapper > ul.menu > li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: white;
    opacity: 0.5;
    transform: translate(-50%, 0);
}

main > div.menu-wrapper > ul.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 12px;
    line-height: 15px;
    margin-top: 64px;
}

main > div.menu-wrapper > ul.contact > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

main > div.menu-wrapper > ul.contact > li > h3 {
    opacity: 0.5;
    padding: 0;
    margin: 0;
    margin-right: 8px;
    font-size: 1em;
}

main > div.menu-wrapper > ul.contact > li > a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

main > div.menu-wrapper > ul.contact > li > a:hover {
    opacity: 0.7;
}

main > div.menu-wrapper > ul.contact > li:not(:first-child) {
    margin-top: 16px;
}

div.globe-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
    /* max-width: 1600px; */
}

div.globe-wrapper > div.globe-inner-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
}

div.globe-wrapper > div.globe-inner-wrapper > canvas {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width:100%; 
    height:100%;
}

@media only screen and (min-width: 576px) {
    main {
        padding: 80px 0;
    }

    main > div.logo-wrapper {
        margin-bottom: 64px;
        padding: 0 48px;
    }

    main > div.menu-wrapper {
        padding: 64px 0;
    }
}