body {
    font-family: "poppins";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100vh;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    background-color: antiquewhite;
}

img {
    width: 125px;
    margin-top: 10px;
}

.nav {
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 1440px;
}

.nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
}

.nav ul li {
    list-style: none;
    box-sizing: border-box;
    margin-left: 30px;
}

.nav ul li:first-child {
    margin-left: 0;
}

.nav ul li a {
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    color: #9e2064;
    background-color: #f9b7ba;
    width: 180px;
    height: 40px;
    border: 2px solid #9e2064;
    border-radius: 6px;
    padding-top: 10px;
    font-size: 0.8em;
    transition: background-color 0.5s ease;
}

.nav ul li:nth-child(5) a {
    color: #f9b7ba;
    background-color: #9e2064;
}

.nav ul li:nth-child(3) a {
    margin: 0;
    padding: 0;
}

.nav ul li a:hover {
    background-color: #9e2064;
    color: #f9b7ba;
}

h1 {
    font-size: 1.3em;
    margin: 30px 0;
    color: #9e2064;
}

.dil {
    display: block;
    width: 125px;
    text-align: center;
}

h3 {
    font-size: 1em;
    color: yellow;
    background-color: red;
    margin-bottom: 5px;
}

.dil img {
    width: 60px;
}

/* SECTION */
.container {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    background-image: url(../images/background.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

.kalpler {
    position: absolute;
    margin: 150px 0;
}

.kalpSol {
    left: 150px;
}

.kalpSag {
    right: 150px;
}

.container .kalpler img {
    width: 150px;
}

/* AÇIKLAMA */
.aciklama {
    width: 20em;
    height: 35em;
    background-color: antiquewhite;
    border-radius: 20px;
    position: absolute;
    margin: 190px 0 auto auto;
    padding: 0 30px;
}

.aciklama h4 {
    color: #9e2064;
    font-size: 1.5em;
    margin-top: 2.5em;
    text-align: center;
}

.aciklama p {
    color: #9e2064;
    text-align: left;
    font-size: 1em;
}

.sosyalMedyalar {
    position: absolute;
    bottom: 100px;
}

.sosyalMedyalar img {
    width: 250px;
}

/* AÇIKLAMA */
.aciklama {
    width: 70em;
    background-color: antiquewhite;
    border-radius: 20px;
    position: absolute;
    margin: 175px 0 auto auto;
    padding: 0 30px;
}

.aciklama h4 {
    color: #9e2064;
    font-size: 1.2em;
    margin-top: 1em;
}

.aciklama p {
    color: #9e2064;
    text-align: left;
    font-size: 1.2em;
}

.sosyalMedyalar {
    position: absolute;
    bottom: 100px;
}

.sosyalMedyalar img {
    width: 250px;
}


/* FOOTER */
footer {
    position: absolute;
    bottom: 0;
    width: 1440px;
    text-align: center;
    background-color: antiquewhite;
}

footer h2 {
    color: #9e2064;
}