@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    color: yellow;
    text-decoration: none;
}

a :hover {
    color: rgb(243, 6, 132);
}


h1, h2 {
    font-weight: 300;
    line-height: 1.3;
}

p {
    margin: 5px 0;
}

img {
    width: 100%;
}

/* Navbar */
.navbar {
    color: yellow;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: yellow
    padding: 10px 5px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: yellow 3px solid;
}

.navbar ul {
    display: flex;
}

.navbar .logo {
    font-weight: 250;
    color: yellow
}

/* Header */


.hero {
    background: url('../img/mohammedomartaha.png') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
}



.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: bottom;
    text-align: center;
    height: 100%;
    padding: 38% 20px;
    color: red;
}

.hero .content h1 {
    font-size: 50px;
    color: yellow;
	font-size: 40px;
	text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}

.hero .content p {
    font-size: 20px;
    max-width: 750px;
    margin: 5px 0 5px;
    color: yellow;
		text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}


.hero * {
    z-index: 10;
}

.intro-text {
    font-size: 18px;
}
    



/* Collapse button */

.btn-info {
    background-color: teal;
}

/* Descriptions */



.descriptions p {
    font-size: 14px;
}

.descriptions img {
    border-radius: 50%;
}

/* Callback form */
.callback-form {
    width: 100%;
    padding: 20px 0;
}

.callback-form label {
    display: block;
    margin-bottom: 5px;
}

.callback-form .form-control {
    margin-bottom: 15px;
}

.callback-form input {
    width: 100%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.callback-form input:focus {
    outline-color: #28a745;
}

.callback-form .btn {
    padding: 12px 0;
    margin-top: 20px;
}

/*flex boxes*/
.box {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
    width: 33%;
    align-content: space-between;
  }
    
  
  * {
    box-sizing:  border-box;
  }

  .flex-container {
    display: flex;
  }

  .item {
    background: #f4f4f4;
    border: #ccc solid 2px;
    margin: 10 px;
    padding: 10px;
    text-align: cneter;
    border-radius: 10px;
    flex: 1;
  }



/* Descriptions */



.item-langlink {
    background-color: rgb(59, 2, 202);
    color: white;
}

.item-langlink img {
    border-radius: 50%;
}


.item-tradlink img {
    border-radius: 50%;
}

.item-tradlink {
    background-color:  rgb(4, 180, 45);
    color: white;
} 

.item-corrector {
    background-color:  rgb(207, 4, 187);
    color: white;
} 

.item-corrector img {
    border-radius: 50%;
}

.item-provlink {
    background-color:  rgb(4, 31, 207);
    color: white;
} 

.item-provlink img {
    border-radius: 50%;
}


/* Post */
.post {
    padding: 10px 30px;
}

.post h2 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: #ccc solid 1px;
}

.post .meta {
    margin-bottom: 30px;
}

.post img {
    width: 300px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
}

/* Footer with links */

.footer {
    background-color: #333;
}

.item-fsongs {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fdance {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fwriting {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-social {
    background-color: #333;
    border: 0;
}

.item-fvisual {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fhistory {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fevents {
    background-color: #333;
    border: 0;
    font-size: 10px;
}


/* Mobile */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: 80px;
        padding: 10px;
    }

    .navbar a {
        padding: 5px 5px;
        margin: 0 3px;
    }

 .flex-container {
     display: block;
 }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column, .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }

    .team img {
        width: 70%;
    }
