/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Nova+Round&family=Signika:wght@600&family=Tilt+Neon&display=swap');
/* root color */


/* defalt settings */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* main styling */

body {
    overflow-x: hidden;
}

.title {
    width: 100vw;
    display: flex;
    justify-content: center;
  font-family: "Georgia", serif;
    color:rgb(204, 163, 110);  
    box-shadow: 1px 1px 1px 1px;
    border-radius: 20px;
    margin-bottom: 10px; 
}

.title h1 {
    font-size: 50px;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.title h1 span {
    padding-left: 15px;
    padding-right: 15px;
}

.container{
    display: flex;
    width: calc(100vw - 200px);
    margin-left: 100px;
    margin-right: 100px;
    font-size: 15px;
  font-family: "Georgia", serif;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}


.sub1,.sub2,.sub3,.sub4 {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 30px;
    box-shadow: 5px 5px 10px 1px #000000;
    overflow: hidden;
    padding:5px;
    
}

.sub1 img, .sub2 img, .sub3 img, .sub4 img {
    width: 100px;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 1px #000000;
}

.container h3 {
    width: 400px;
}

.networking,.collaborate {
    margin: 5px;
    display: flex;
    justify-content: flex-start;
}

.learning,.experience {
    margin: 5px;
    display: flex;
    justify-content: flex-end;
}
