* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    list-style-type: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    width: 97%;
    margin: auto;
    min-height:100vh;
    border-left:2px solid #2fb67c;
    border-right:2px solid #2fb67c;
}

header {
    display: flex;
    align-items: center;
    margin:0 15px;
    padding-top:15px;
}

header .logo img {
    width: 80px;
}

header .web_name {
    margin-left: 5px;

}

header .web_name .tittle {
    font-weight: 300px;
    font-size: 20px;
    padding-bottom: 5px;
}

header .web_name .sub_tittle {
    font-size: 12px;
}

/* ========================nav============================= */

nav {
    background: linear-gradient(to bottom,#2fb67c,#BFE118);
    padding: 10px;
    align-items: end;
    border-radius: 15px;
    box-shadow:1px 3px 7px #383838;
    margin:15px;
    position:relative;
    
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

nav ul li a {
    color: white;
    font-size: 15px;
    padding: 6px 15px 6px 15px;
    transition: all 0.5s;
    border-radius: 7px;
}


nav ul li a:hover {
    background-color: transparent;
    color: black;
}

nav ul li a.active {
    background-color: transparent;
    color: black;
}

nav i {
    font-size:30px;
    color:white;
    border:1px solid white;
    border-radius:5px;
    display:none !important;
}


@media screen and (max-width:500px){
    
    nav i {
    display:block !important;
}
    
  nav{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    cursor:pointer;
   }
   
 nav ul {
    position:absolute;
    flex-direction:column;
    background:#BFE118;
    left:0;
    right:0;
    top:50px;
    border-radius: 15px;
    margin:15px;
    display:none;
 }
nav ul.open {
    display:flex;
 }

 
}





/* =====================main====================== */

main > .title {
    font-size: 30px;
    color: #FF0040;
    text-align:center;
    margin-top:40px;
}
main > .summary {
    font-size: 20px;
    color: #2fb67c;
    text-align:center;
    margin-top:20px;
}


.results{
    display:flex;
    gap:15px;
    flex-direction:column;
    width:70%;
    margin:auto;
        margin-top:20px;
}


@media screen and (max-width:700px){
    .results{
    width:95%;
}
}


.results .result{
    width:100%;
    min-height:140px;
    border:1px solid #2fb67c;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-direction:column;
    padding:10px 0;

}

.results .result .title{
    font-size:25px;
    color:black;
}

.results .result a{
    background-color:#edebeb;
    color:#2fb67c;
    font-size:20px;
    border:none;
    text-decoration:none;
    border-bottom:2px solid transparent;
    padding:3px 10px;
    cursor:pointer;
}
.results .result a:hover{
    background-color:#edebeb;
    color:black;
    border-bottom:2px solid black;
}



/* ========================footer=========================== */


footer {
    background-color: wheat;
    padding: 20px;
    margin-top: 500px;
}

footer ul {
    display: flex;
    justify-content: center;
}


footer ul li a {
    align-items: center;
    font-size: 13px;
    border-left: 2px solid rgb(61, 61, 61);
    margin-left: 5px;
    padding-left: 5px;
    margin-top: 7px;
}

.resrved {
    text-align: center;
    font-size: 13px;
    color: rgb(44, 43, 43);

}

.resrved span {
    font-weight: bold;
}