@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&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');
  
:root {
    font-family: "Bebas Neue", sans-serif;

    font-size: 8px;

    --primary-1: #fbd508;
    --primary-2: #9f8a1f;
    --secondary-1: #240000;
    --secondary-2: #1a0000;

}

@media (min-width: 800px) {
    :root {
        font-size: 14px;
    }
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

html, body {
    background-color: var(--secondary-1);
    color: var(--secondary-1);

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    height: 100%;
    width: 100%;
}

body main {

    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 100%;
    width: 100%;

    background: url(../res/img/half-logo.png) var(--primary-1);
    background-repeat: no-repeat;
    background-size: 20rem;
    background-position: 100% 100%;
}

a {
    color: var(--primary-2);
}

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

footer, #contact {
    position: relative;
    
    z-index: 999;

    font-size: 5rem;
    width: 100%;

    padding: 5rem;

    background-color: black;
    color: var(--primary-1);

    @media (width <= 600px) {
        padding: 1rem;
    }
}

#contact {
    background-color: var(--secondary-2);
    height: 100%;
}

footer * {
    margin: 2rem;
}

#split-left {
    overflow: hidden;

    width: max-content;

    background-color: var(--secondary-1);
    color: var(--primary-1);
    background: url(../res/img/mountain-white.svg) var(--secondary-1);

    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 110vh;

    @media (width <= 600px) {
        display: flex;
        flex-direction: column-reverse;
    }
}

#split-right {
    background: url(../res/img/mountain-black.svg);

    background-position: -22rem 100%;
    background-repeat: no-repeat;
    background-size: 100vh;

}

#split-right p {
    font-size: 8.5rem;
    font-weight: 700;
}

#visit {
    position: relative;
    padding: 0 !important;
    margin-inline: 15rem;
    font-size: 5rem;

    right: 5rem;

    @media (width <= 600px) {
        margin-inline: 3rem;
        right: 0;
    }
}

.main-split {
    width: auto;
}

.main-split p {
    font-size: 12rem;
    margin: 5rem 2rem;
}

@media (max-width: 1300px) {
    .main-split  {
        flex: 1;
        min-width: 100%;
        height: 40%;
        background-image: none !important;
    }

    .main-split p {
        margin: 1rem;
    }

    #split-right {
        height: 100%;
    }
}
@media (max-width: 1300px) {
    main {
        background: var(--primary-1) !important;
    }
}
/* 
#yeti-logo img {
    user-select: none;
    
    pointer-events: none;

    position: absolute;
    bottom: -4rem;
    left: -1.3rem;
    width: 49rem;
    height: auto;
} */