* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Albert Sans", sans-serif;
    text-decoration: none;
    list-style: none;
    color: #9e2064;
}

:root {
    --koyu-pembe: #9e2064;
    --acik-pembe: #f9b7ba;
    --krem: #ffe4c4;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--krem);
    height: 100vh;
}

.header-container,
section,
footer {
    max-width: 120rem;
    margin: auto;
}

header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    max-width: 102rem;
    width: 100%;
}

header .logo img {
    max-width: 14rem;
}

header nav .menu {
    display: flex;
    justify-content: space-between;
}

header nav .menu a {
    display: block;
    background-color: var(--acik-pembe);
    color: var(--koyu-pembe);
    width: 18rem;
    height: 4rem;
    font-size: 1.4rem;
    text-align: center;
    line-height: 4rem;
    border: 1px solid #9e2064;
    border-radius: 5px;
}

header nav .menu a.active,
header nav .menu a:hover {
    box-shadow: 2px 2px 5px var(--koyu-pembe)
}

header nav .nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

header nav .nav-bottom h1 {
    font-size: 2.4rem;
}

header nav .nav-bottom .almanca img {
    max-width: 5.5rem;
    border-radius: 50%;
}

header nav .nav-bottom .almanca img:hover {
    box-shadow: 0px 0px 1.5rem var(--koyu-pembe);
}

header nav .nav-bottom #menu-btn {
    display: none;
}

/* --------------------------------------- */

.section-container {
    background: url(../images/background.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.section-container section {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

.section-container section .fa-beat {
    width: 15rem;
    height: 15rem;
}

.section-container section .sorgulama {
    width: 70%;
    height: auto;
    margin: 0 auto;
    padding: 6rem;
    background-color: var(--krem);
    border-radius: 1rem;
}

.section-container section .sorgulama h4 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
}

.section-container section .sorgulama p {
    font-size: 2.2rem;
    line-height: 3rem;
    text-indent: 5rem;
}

.section-container section .sorgulama p:last-child {
    margin-top: 2rem;
}

/* --------------------------------------- */

footer {
    display: flex;
    flex-direction: column;
    padding-top: 1.2rem;
}

footer .sosyal {
    display: flex;
    justify-content: center;
}

footer .sosyal img {
    max-width: 25rem;
}

footer h2 {
    font-size: 2.6rem;
    text-align: center;
}

footer .kopirayt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    border-top: 1px solid #9e2064;
    padding-top: 2rem;
    margin-top: 2rem;
    opacity: .5;
    text-align: center;
}

footer .kopirayt h3 {
    font-weight: 300;
    font-size: 1.5rem;
    margin-right: 2rem;
}

@media (max-width:1440px) {
    header {
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer {
        padding: 2rem 0;
    }

    footer h2 {
        font-size: 2rem;
    }
}

@media (max-width:576px) {

    .header-container,
    header,
    .section-container section,
    footer {
        max-width: 100%;
    }

    header {
        padding: 1rem;
    }

    header nav {
        max-width: 100%;
    }

    header .logo img {
        max-width: 8rem;
        margin-right: 1rem;
    }

    header nav {
        position: relative;
    }

    header nav .menu {
        transform: scaleX(0);
        flex-direction: column;
        position: absolute;
        z-index: 501;
        top: 11rem;
        right: 1rem;
        transition: all .2s;
    }

    header nav .menu.active {
        transform: scaleX(1);
    }

    header nav .menu a {
        width: 25rem;
        height: 6rem;
        font-size: 1.8rem;
        /* text-align: center; */
        line-height: 6rem;
    }

    header nav .nav-bottom {
        margin-top: 0;
    }

    header nav .nav-bottom h1 {
        font-size: 1.2rem;
    }

    header nav .nav-bottom .almanca img {
        max-width: 5rem;
    }

    header nav .nav-bottom #menu-btn {
        display: block;
        font-size: 4rem;
        margin-left: 0.5rem;
        background-color: transparent;
        border-radius: 5px;
        border: 2px solid var(--koyu-pembe);
    }

    /* --------------------------------------- */

    .section-container section {
        padding: 1rem 0;
    }

    .section-container section .sorgulama {
        width: 90%;
    }

    .section-container section .fa-beat {
        display: none;
    }

    /* --------------------------------------- */

    footer .sosyal {
        flex-direction: column;
        margin: auto;
    }

    footer h2 {
        font-size: 1.4rem;
    }

    footer .kopirayt {
        flex-direction: column;
    }

    footer .kopirayt h3 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    footer .kopirayt a {
        font-size: 2.5rem;
        margin: 0 .5rem;
    }
}