*{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;

    user-zoom: none;

    -webkit-user-drag: none;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html,body{
    width: 100%;
    height: auto;
    
    margin: 0;
    padding: 0;

    overflow: auto;

    background-image: url("Background.jpg");
    background-size: cover;

    display: flex;
    flex-direction: column;
}

body{
    width: 100%;
    height: 100%;
}

.Top_block{
    height: 25vh;
}

.Triangle_Block{
    height: 100%;

    aspect-ratio: 1/1;

    clip-path: polygon(0% 0%, 100% 0%, 50% 50%, 0% 100%);

    background-color: rgba(255, 255, 255, .5);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.Triangle_Block_Text{
    --padding-value: 15px;

    position: relative;

    top: -100%;

    padding-top: var(--padding-value);
    padding-left: calc(var(--padding-value) + 5px);
}

.Triangle_Block_Text > *{
    margin: 0;
    
    white-space:nowrap;

    color: rgba(255, 255, 255, 1);
}

.Triangle_Block_Text > .title{
    font-size: 40px;
    font-weight: 900;
}

.Triangle_Block_Text > #point{
    font-size: 80px;
    font-weight: bold;
}



.Bottom_block{
    flex: 1;

    height: 80vh;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

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

.Block{
    width: 15vw;
    min-width: 350px;
    height: 75vh;

    margin: 10px;
    border-radius: 8px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.Block > .Block_Title{
    width: 100%;
    height: fit-content;

    margin: max(10px,1vw) 0;

    text-align: center;

    font-size: max(40px,2.5vw);
    font-weight: 900;
}

.Block > .Block_Content{
    flex: 1;

    display: flex;
    flex-direction: column;
}

.Block_Content > .Block_Content_Item{
    flex: 1;
    max-height: 70px;

    margin: 5px 10px;
    border-radius: 8px;

    display: flex;

    overflow: hidden;

    background-color: rgba(255, 255, 255, .3);

    cursor: pointer;

    transition: .3s;
}

.Block_Content > .Block_Content_Item:hover{
    background-color: rgba(255, 255, 255, .5);

    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.Block_Content_Item > .Block_Content_Item_Left{
    height: 100%;

    aspect-ratio: 1/1;

    display: flex;
}

.Block_Content_Item > .Block_Content_Item_Left > img{
    padding: 5px;
    height:calc(100% - 10px);

    object-fit: cover;
}


.Block_Content_Item > .Block_Content_Item_Center{
    flex: 1;

    padding-left: 5px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: first baseline;
}

.Block_Content_Item > .Block_Content_Item_Center > p{
    margin: 0;
}

.Block_Content_Item > .Block_Content_Item_Center > .Block_Content_Item_Title{
    font-size: 20px;
    font-weight: 900;

    margin-bottom: .1vw;
}

.Block_Content_Item > .Block_Content_Item_Center > .Block_Content_Item_Description{
    font-size: 15px;
}

.Block_Content_Item > .Block_Content_Item_Right{
    height: 100%;

    aspect-ratio: 1/1;

    display: flex;
    flex-direction: column;

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

.Block_Content_Item > .Block_Content_Item_Right > p{
    margin: 0;
}

.Block_Content_Item > .Block_Content_Item_Right > .Block_Content_Item_Point{
    font-size: 20px;
    font-weight: 900;
}


footer{
    width: 100%;

    text-align: center;
}

footer > output{
    width: 75%;

    flex: 1;

    color: white;

    font-size: 15px;
    font-weight: 100;
}