html {
    font-family: Poppins;
}

body {
    margin: 0;

    background-color: transparent;
    overflow-x: hidden;
}

@media (max-width: calc(1128px + 32px)) { 

    main {
        padding: 0 32px;
    }

    .header_container{
        padding: 0 32px;
    }
    
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1;

    height: 52px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
}

.header_container{
    height: 24px;
    width: 100%;
    max-width: 1128px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header_icon{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    cursor: pointer;
}

.hover_dim{
    opacity: 1;

    transition: 0.1s;
}

.hover_dim:hover{
    opacity: 0.7;

    transition: 0.1s;
}

.lab_icon{

}

.lab_name{
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.header_nav{
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.nav_item{
    display: flex;
    flex-direction: row;
    align-items: center;

    color: black;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.main{
    margin-top: 0;
    z-index: -1;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.main_page{
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.news_container{
    width: 100%;
    max-width: 1128px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;

    margin: 64px;

    /* background-color: black;  */
}

.earth_container{
    width: 100%;
    max-width: 1128px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.earth_image{
    min-width: 256px;
    max-width: 80%;
    object-fit: cover;
    
    filter: drop-shadow(0px -12px 12px rgba(0,0,0,0.05));
}

.introduction_container{
    width: 100%;
    max-width: 1128px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 24px;
}

.footer{
    bottom: 0;
    position: fixed;

    width: 100vw;
    height: 32px;

    background: #3173DC;

    color: white;
    font-size: 12px;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;
}

.clamp{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}