@import url(/css/font.css);

* {
    padding: 0px;
    margin: 0px;
}
/*Laout Sayfasý*/

body {
    box-sizing: border-box;
}

.main {
    width: 100%;
    height: auto;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    background-color: #99aab7;
    padding: 10px;
}

.header-logo {
    width: 280px;
    height: auto;
    padding: 10px;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-bottom: 1px solid #b6cee0;
    box-shadow: rgb(227, 226, 226, 0,40) 1px 0px 0.5px;
    padding: 5px;
}

.nav-link {
    color: #545252;
    padding: 5px 15px;
    margin: 5px 2px;
    font-size: 1.0em;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: all 0.8s;
    text-align: center;
}

    .nav-link:hover {
        background-color: #99aab7;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
    }



.alt-menu-ul{
    padding:10px;
    margin:5px;
    background-color:#b6cee0;
    list-style:none;
    border-radius:5px;
    display:none;
    transition:all 0.7s;
    position:absolute;
    z-index:100;
    margin-top:0px;
    margin-left:0px;
}

    .alt-menu-ul li {
        padding: 8px 8px;
        margin: 5px 0px;

    }

        .alt-menu-ul li a {
            text-decoration: none;
            color: #545252;
            transition: all 0.5s;
            padding-left:5px;
        }

.nav li:hover > .alt-menu-ul{
    display:block;
}
.alt-menu-ul li:hover{
    background-color:#647683;
    border-radius:5px;
}

    .alt-menu-ul li:hover > a {
        color: #fff;
        cursor:pointer;
    }


#content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

footer {
    width: 100%;
    background-color: #99aab7;
    padding: 20px;
    display: flex;
    position: absolute;
    justify-content: flex-start;
    bottom: 0;
    color: #fff;
    align-content: center;
}

    footer p {
        margin: 0;
        font-size: 0.98em;
    }

@media screen and (max-width:480px) {
    .nav-link {
        color: #545252;
        padding: 5px 15px;
        margin: 5px 2px;
        font-size: 0.7em;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
    }
    .alt-menu-ul li a{
        font-size:0.7em;
    }
}

/*Index Sayfasý */

#welcome {
    width: 100%;
    height: 100vh;
    display: block;
    text-align: center;
    margin-top: 10px;
    flex-wrap: nowrap
}
 

