html{
    scroll-behavior: smooth;
}
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}
#menu {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    background-color: black;
    color: aliceblue;
}
ul li {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
    margin-top: px;
    margin-bottom: px;
}
ul li a {
    background-color: black;
    color: aliceblue;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 16px;
    padding-bottom: 18px ;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}
ul li a:hover {
    color: black;
    background-color: aliceblue;
}
#header  {
    display: flex;
    justify-self: flex-start;
    width: auto;
    height: 60px;
}
@media all and (max-width : 800px){
    ul li {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
     ul li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
        padding: 2px 2px;
        margin: 5px 5px;
    }
}
@media all and (max-width : 600px) {
    ul li {
        display: flex;
        flex-direction: column;
    }
    ul li a {
        padding: 5px 5px;
    }
}
#main {
    display: flex;
}
#content {
    display: flex;
    flex: 100%;
    justify-content: space-between;
    align-items: center;
    background-image: url(img/backgroundblack.jpg);
    background-size: cover;
    width: auto;
    min-height: 91vh;
}
#baslıkbuton {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-left: 10%;
}
#resim {
    display: flex;
    justify-content: flex-end;
    margin-right: 5%;
}
#resim img {
    width: 100%;
    height: 147px;
}

#baslıkbuton h1 {
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", sans-serif;
        font-size: 300%;
        margin-bottom: 10%;
        text-shadow: 2px 2px black;
}
#baslıkbuton button{
    display: block;
    flex-direction: row;
    padding-left: 13%;
    padding-right: 13%;
    padding-top: 3%;
    padding-bottom: 3%;
    margin-right: 10%;
    color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
    justify-content: center;
    font-family:"Montserrat", sans-serif;
    font-weight: bold;
    font-size: 100%;
    color: rgb(255, 255, 255);
    cursor: pointer;
}
#baslıkbuton button a {
    color: red;
}
#kırmızı {
    color: red;
}
#mavi {
    color: rgb(255, 255, 255);
}
#baslıkbuton button:hover {
    display: block;
    flex-direction: row;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding-left: 15%;
    padding-right: 15%;
    font-size: 110%;
    transition: .3s ease-in-out;
}
@media all and (max-width : 800px){
    #content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #baslıkbuton {
        margin-left: 0%;
        margin-top: 0%;
        margin-bottom: 30%;
    }
    #resim {
        display: none;
    }
}
@media all and (max-width : 600px){
    #content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #baslıkbuton {
        margin-left: 0%;
    }
    #resim {
        display: none;
    }
}
