* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

body {
    background-image: url(images/second-background.png);
    background-blend-mode: color;
    background-size: 100%;
    background-repeat: repeat;
}

:root {
    --main-background: #000000;
    --second-background: #eac313;
    --main-text: #eac313;
    --second-text: #000000;
    --third-text: #fff;
    --forth-text: #414141;
    --main-btn: #eac313;
    --main-hover: #eac313;
    --second-hover: #fff;
}

/*navbar section*/
.navbar {
    background: var(--second-background);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    height: 8vh;
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 8vh;
    z-index: 4;
    width: 70vw;
    margin: 0 auto;
}

.navbar_content_left {
    display: flex;
    align-items: center;
}

.navbar_content_left h1 {
    font-size: 4vh;
}

#navbar_img {
    height: 5vh;
    margin-right: 1vw;
}

.navbar_content_right {
    display: flex;
    align-items: center;
}

.navbar_content_right a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: var(--second-text);
    margin-left: 1vw;
    font-size: 2vh;
}

.navbar_content_right a:hover {
    color: var(--third-text);
    transition: all 0.3s ease-in-out;
}

.ham {
    height: 2.5vh;
    align-self: center;
    display: none;
}

.ham_line {
    height: 0.5vh;
    width: 4vh;
    background-color: var(--main-background);
}

#ham_line_mid {
    margin: 0.5vh 0;
}

.nav_mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 30vh;
    background-color: var(--second-background);
    z-index: 10;
    padding-left: 10vw;
    padding-top: 2vh;
}

.nav_mobile a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: var(--second-text);
    font-size: 2vh;
}

.nav_mobile a:hover {
    transition: all 0.3s ease-in-out;
    color: var(--second-hover);
}

@media screen and (max-width: 1250px) {
    .navbar_container {
        width: 80vw;
    }

    .navbar_content_right {
        display: none;
    }

    .navbar_content_left h1 {
        display: none;
    }

    .ham {
        display: unset;
    }
}

/*first section*/
.first_container {
    display: flex;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
}

.first_content_left h1 {
    font-size: 4vh;
    color: var(--main-text);
}

.first_content_left p {
    font-size: 2vh;
}

.first_content_left {
    width: fit-content;
    max-width: auto;
}

#first_img {
    width: 20vw;
    min-width: 20vw;
    height: auto;
    border-radius: 1vw;
    box-shadow: 1vw 1vw;
    margin: 1vw;
}

.first_content_right {
    margin-left: 5vw;
    display: flex;
    align-items: center;
    min-width: 22vw;
}

/*first section*/
.second_container {
    display: flexbox;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    overflow: visible;
    position: relative;
}

.second_content_top {
    display: flex;
    align-items: center;
}

.second_content_top h1 {
    font-size: 4vh;
    color: var(--main-text);
    margin-right: 2vw;
}

#second_content_top_search {
    border-radius: 10vw 3vw 3vw 10vw;
    border: 2px #eac313 solid;
    padding: 1.25vh;
    margin-right: 0.2vw;
    height: 4vh;
    font-size: 1.5vh;
}

#second_content_top_button_search {
    border-radius: 3vw 10vw 10vw 3vw;
    border: none;
    background-color: var(--main-btn);
    padding-left: 1.25vh;
    padding-right: 1.25vh;
    height: 4vh;
    font-size: 1.5vh;
    transition: 0.3s ease-in-out;
    margin-right: 0.2vw;
}

#second_content_top_button_search:hover {
    transition: 0.3s ease-in-out;
    background-color: var(--main-background);
    color: var(--main-hover);
}

#second_content_top_button_reset {
    display: none;
    border-radius: 3vw 10vw 10vw 3vw;
    border: none;
    background-color: var(--main-btn);
    padding-left: 1.25vh;
    padding-right: 1.25vh;
    height: 4vh;
    font-size: 1.5vh;
    transition: 0.3s ease-in-out;
}

#second_content_top_button_reset:hover {
    transition: 0.3s ease-in-out;
    background-color: var(--main-background);
    color: var(--main-hover);
}

.second_content_bottom {
    overflow: visible;
    position: relative;
}

.second_content_bottom h1 {
    margin-top: 3vw;
    font-size: 3vh;
    color: var(--second-text);
}

.second_card {
    margin-top: 3vw;
    background-color: var(--second-background);
    border-radius: 1vw;
    padding: 1vw;
    display: flexbox;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
    width: 70vw;
}

.second_card:hover {
    box-shadow: 1vw 1vw;
    transform: translate(-1vw, -1vw);
    transition: 0.3s ease-in-out;
}

#second_card_name {
    font-size: 3vh;
    color: var(--second-text);
}

#second_card_age, #second_card_date, #second_card_info {
    font-size: 2vh;
    color: var(--forth-text);
}

/* footer section */
.footer__container {
    background-color: var(--main-background);
    padding: 10vh 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__social {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2vh;
}

.footer__links {
    width: 70vw;
    max-width: 	70vw;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 70vw;
    width: 70vw;
    justify-content: center;
}

.footer__link--items-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: left;
    align-items: baseline;
}

.footer__link--items {
    display: flex;
    text-decoration: none;
    flex-direction: column;
    margin: 2.5vh 5vh;
    text-align: left;
    box-sizing: border-box;
    justify-content: center;
}

.footer__link--items--2 {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.footer__link--items h2 {
    margin-bottom: 1.6vh;
    font-size: 3vh;
    color: var(--third-text);
}

.footer__link--item > h2 {
    color: var(--third-text);
}

.footer__link--items a {
    color: var(--third-text);
    text-decoration: none;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    transition: 0.3s ease-in-out;
    font-size: 2vh;
}

.footer__link--items a:hover {
    transition: 0.3s ease-in-out;
    color: var(--main-hover);
}

.footer__link--items p {
    color: var(--third-text);
    text-decoration: none;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    font-size: 2vh;
}

.footer__link--items--2 img {
    height: 2vh;
    align-self: center;
    margin-right: 0.5vh;
    filter: invert();
    width: 3vh;
}