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;
}

.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(4) a{
    color: #f9b7ba;
    background-color: #9e2064;
}

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

h1{
    font-size: 1.5em;
    margin-top: 30px;
    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;
}

/* AÇIKLAMA */
.aciklama{
    /* width: 60em;
    height: 30em; */
    background-color: antiquewhite;
    border-radius: 20px;
    position: absolute;
    margin: 170px 0 auto auto;
    text-align: center;
    padding: 0 30px;
    font-size: 1em;
}

.aciklama span{
    color: #9e2064;
    font-weight: 700;
}

.aciklama img, p{
    margin: 0 0 0.8em 0;
}

.aciklama p:first-child{
    margin-top: 1.5em;
}

.aciklama .sms{
    width: 50em;
    margin: 0 0 1.4em 0;
}

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

footer h2{
    color: #9e2064;
}