
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

p, h1,h2,h3,h4,h5,h6,ul {
    padding: 0;
    margin: 0;
}

body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    height: 100vh;
    background-image: url("./images/yapim-asamasi.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
 img{
    width: 250px;
    height: 200px;
    border-radius: 10px;
    padding-bottom: 50px;
}
.content-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    gap: 30px;
    width: 100%;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.content-area h1{
    font-size: 50px;
}
.mail-area ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    list-style-type: none;
}
.mail-area ul p{
    font-size: 40px;
    font-weight: bold;
}
.mail-area ul li{
    font-size: 25px;
}
.mail-area ul li i{
     padding-right: 10px;
}
.contact-area ul{
    text-align: center;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.contact-area ul p{
    font-size: 40px;
    font-weight: bold;
}
.contact-area ul li{
    font-size: 28px;
}
.contact-area ul li i{
    padding-right: 10px;
}

.text-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.contact-area {
    margin-top: 60px;
    
}

@media screen and (max-width: 768px) {
    .content-area {
        padding: 30px;
    }
    * {
        text-align: center;
    }
    body{
        height: inherit;
        overflow-x: hidden;
    }
}