*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f7f7;

    color:#222;

}

.navbar{

    padding:20px;

}

.navbar-brand{

    font-size:30px;

    font-weight:700;

    color:#FFC107 !important;

}

.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(8, 20, 40, 0.75), rgba(8, 20, 40, 0.75)), url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;

}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    opacity: .95;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn {
    /* Kodun devamı fotoğrafta kesilmiş ama şimdilik bu kadarı ana yapıyı kuracaktır */
}
}

.section{

    padding:100px 0;

}

.card{

    border:none;

    border-radius:15px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

footer{

    margin-top:100px;

}