body
{
    display: flex;
    align-items: center;
    flex-direction: column;

    background-color: #331017;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    
}

main
{
    width: 75%;
    min-height: max-content;
    padding-bottom: 168px;
    overflow: visible;
    font-family: 'FuturaDemiC';
    flex: 1;
}

@media (max-width: 1024px) {
    main
    {
            width: 90%;
    }
}
@media (max-width: 640px) {
    main
    {
            width: 95%;
    }
}

@font-face {
    font-family: 'AKONY';
    src: URL('../akony.ttf') format('truetype');
}

@font-face {
    font-family: 'FuturaDemiC';
    src: URL('../FuturaDemiC Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Druk';
    src: URL('../Druk Wide Cyr Medium.otf') format('truetype');
}

@font-face {
    font-family: 'Monstserrat';
    src: URL('../Montserrat-Medium.ttf') format('truetype');
}

header
{
    /* background-image: url(parlax_bg.png); */
    max-width: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;

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


    overflow: hidden;
    color: var(--header_text_color);
}

#parlax_fr_id
{
    width: 100%;
    height: 100%;
    position: relative;
    top: 10px;
}

#header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;

    /* padding: 1.5rem; no adaptive */

    padding-left: 1.5rem;
    padding-right: 1.5rem;
    
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    
    gap: 2rem;
}

@media (max-width: 640px) {
    #header-content
    {

        padding-left: 0.25rem   !important;
        padding-right: 0.25rem  !important;
        padding-top: 1rem    !important;
        padding-bottom: 1rem !important;
        /* flex-direction: column; */
        gap: 0.5rem !important;
        flex-direction: column;
    }
}

#header-content h1
{
    z-index: 2;
    font-family: 'AKONY';
    width: fit-content;
    overflow: visible;
    /* font-size: 42px; no adaptive */
    font-size: clamp(1.5rem, 0.3173rem + 1.9231vw, 2.625rem);
}

@media (max-width: 1024px) {
    #header-content h1 {
        text-align: center;
    }
}

#header-content #nav-header {
    z-index: 2;
    font-family: 'FuturaDemiC';
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;

    /* gap: 4px; */
    /* gap: 170px; */
    gap:  clamp(10.625rem, -11.875rem + 18.75vw, 28.4375rem);
    font-size: clamp(0.875rem, 0.6731rem + 0.8974vw, 1.75rem);
    /* font-size: 28px;  no adaptive*/
}

@media (max-width: 1024px) {
    #header-content #nav-header {
        justify-content: space-around !important;
        gap: 2rem !important;
    }
}

@media (max-width: 640px) {
    #header-content #nav-header {
        justify-content: space-around !important;
        gap: 1rem !important;
    }
}

#header-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6%;
  right: -6%;
  background: linear-gradient(
    to right,
    #e3342f 0%,
    #e3342f 45%,
    #8e3a84 45%,
    #8e3a84 60%,
    #4a1717 60%,
    #4a1717 80%,
    #ff3c00 80%,
    #ff3c00 100%
  );
  transform: skewX(60deg);
  transform-origin: left;
}

@media (max-width: 1024px) {
    #header-content::before {
        left: -21% !important;
        right: -21% !important;
          background: linear-gradient(
    to right,
    #e3342f 0%,
    #e3342f 45%,
    #e3342f 45%,
    #e3342f 60%,
    #e3342f 60%,
    #e3342f 80%,
    #e3342f 80%,
    #e3342f 100%
  ) !important;

    }
}

#social_buttons
{
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    overflow: visible;
    font-family: 'FuturaDemiC';
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 640px) {
    #social_buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
}


.rules
{
    padding-top: 48px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.3125rem, 0.2404rem + 0.3205vw, 0.625rem);
    padding-bottom: 24px;
}

.rules img
{
    width: 90%;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.2));
}

#rules-cont
{
    display: flex;
    flex-direction: row;
}


@media (max-width: 640px) {
    #rules-cont
    {
        flex-direction: column;
    }
}

.zoomthis
{
    transform: scale(1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0px 0px 0px black);
}

.zoomthis:hover
{
    z-index: 2;
    transform: scale(1.2);
    filter: drop-shadow(0px 0px 10px black);
}