* {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121F3D;
}
.header {
    /*border: solid 1px blue;*/
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
    background-color: #071b48;
}

nav {
    /* border: solid 1px yellow; */
    width: 455px;
    text-align: center;
    color: #1E77EC;
   
    
}

nav ul  li a{
    list-style: none;
    text-decoration: none;
    
}

nav ul {
    margin-top: 20px;
}
nav li {
    /*border: solid 1px yellow;*/
    display: inline;
    text-align: center;
    padding: 5px 15px;
    margin: auto 0;
}

.right {
    /*border: solid 1px green;*/
    width: 250px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.right li {
    list-style: none;
   
    margin: 0 15px;
    color: #1E77EC;
    background: #eeeeee;
    padding: 5px 10px;
}

.right ul {
    display: flex;
    
}

.right a {
    text-decoration: none;
}

#community {
    border: solid 1px red;
    display: grid;
    place-content: center;
    font-family: 'Cairo', sans-serif;
    width: 1200px;
    margin: 0 auto;
    color: #1E77EC;
    
}

.comm1 {
    border: solid 1px red;
    display: grid;
    grid-template-columns: 350px 350px 350px;
    grid-auto-rows: 220px;
    gap: 25px;
    place-content: center;
}

.comm2 {
    display: grid;
    grid-template-columns: 350px 350px 350px;
    grid-auto-rows: 220px;
    gap: 25px;
    place-content: center;
}

.card {
    /* border: solid 1px green; */
    border-radius: 10px;
    background-color: #24385B;
    color: #1E77EC;
    padding: 15px 20px;
 }

 h2 {
    margin: 10p;
 }

 footer {
    background-color: #071b48;
    padding: 30px 100px;
    color: #1E77EC;
    font-family: 'Cairo', sans-serif;
 }

 .social {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    /* border: 5px solid #e1bee7; */
 }
 .social img {
    width: 30px;
    margin-right: 15px;
    
    
 }

 .social-icons {
    color: #1E77EC;
 }

 .hr {
    /* height: 10px; */
    color: #1E77EC;
    margin: 15px 0;
 }