html {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

*, *:before, *:after {
    box-sizing: inherent;
}
body{
    font-family: 'Courier New', Courier, monospace;
    background-image: linear-gradient(260deg, #00008B 0%, #ADD8E6 100%);
}

main {
    flex: 1;
}
.social a {
    color: white;

}
.links, .social {
    color: white;
    font-weight: 100;
    letter-spacing: 2px;
    text-decoration: none;
    background: rgba(0,0,0,0.2); 
    padding: 20px 5px;
    display: inline-block;
    width: 100%;
    text-align: center; 
    transition: all 0.5s;
}


a:hover {
    background:rgba(0,0,0,0.3)
}

.wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding:50px;
    display: flex;
    flex-direction: column;
}

.flex-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display:flex;
}

.flex-nav li{
    flex:3;
}

.flex-nav .social{
    flex:1;
}

@media all and (max-width:1000px) {
    .flex-nav ul {
      flex-direction:column;
    }
    .experience-wrapper {
        flex-direction: column;
    }
    .job-group {
        flex: none;
        margin-bottom: 20px;
    }
}

.title {
    text-align: center;
}


p{
    border-style:solid;
    border-color:white;
    background-color: white;
    border-radius: 20px;
    padding: 20px;

}

.icon {
    vertical-align: -5px;
    width: 20px;
    height: 20px;
}

.container {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
}
   
img {
    max-width: 100%;
    max-height:100%;
}
   
.text {
    font-size: 20px;
}


.cdli {
    margin-top: 10px;
}
.highschool{
    margin-top: 10px;
}

.technl {
    margin-top: 10px;
}
footer {
    text-align: center;
    padding: 10px 0;
}

.flex {
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    padding: 20px; 

}

.item {
    text-align: center; 
    max-width: 200px;
}

.text-above {
    margin-bottom: 10px; 
    font-weight: bold; 
}

.text-below {
    margin-top: 10px; 
    color: #555; 
    font-size: 0.9em;
}

.flex img {
    max-width: 150px; 
    height: auto; 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease; 
}

.flex img:hover {
    transform: scale(1.1); 
    cursor: pointer;
}

@media all and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.experience-wrapper {
    display: flex;
    justify-content: space-between; 
    gap: 20px; 
    flex-wrap: wrap; 
    padding: 20px;
}

.job-group {
    flex: 1; 
    background-color: #f0f0f0; 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question {
    text-align: center;
}

.job-group h3 {
    margin: 0;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    color: #00008B;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.job-group p {
    font-size: 1em;
    color: #555;
}

.group-title{
    text-align: center;
}

