* {
    margin: 0; /* Reset margin globally to avoid body issues */
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(44, 43, 43);
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center; /* Align div to top */
    overflow-x: hidden;
    padding: 10px; /* Add padding to ensure space inside body */
}
.clearfix {
    overflow: hidden;
    background-color: white;
}
p{
    background-color: white;
    color:rgb(44, 43, 43);
    padding:5px;
}
h2{
    padding:5px;
    padding-left: 40px;
    background-color: white;
    color:rgb(44,43,43);
    font-size: 30px;
}
h3{
    padding:3px;
    padding-left: 15px;
    background-color: white;
    color:rgb(44,43,43);
    font-size: 19px;
}
#flexbox{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    width: calc(100% - 25px);
    padding-right: 5px;
}
#name {
    background-color: white;
    width: 100%; /* Take the full width of the parent */
    padding:10px;
    margin-bottom: 5px;
}
#columnsMain{
    display:flex;
    justify-content: space-between;
    margin:0;
    padding-top: 5px;
    width: 100%;
    flex-grow: 1;
}
#col1{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    width: 27%;
    height: 90vh;
    margin-right: 10px;
    flex-grow: 1;
}
#pic{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
    
}
#pic img{
    width:100%;
    height:100%;
    object-fit: contain;
    
}
#demo{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
}
#skills{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
}


#col2{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    width: 83%;
    height: 90vh;
    width: calc(73% - 10px);
    flex-grow: 1;
}
#vert{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    height:50%;
}
#goals{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
}
#quote{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
}
#background{
    height:33%;
    background-color: white;
    margin-bottom: 10px;
}

#moreCols{
    display:flex;
    flex-direction: row;
    background-color: rgb(44, 43, 43);
    height:50%;
    
}
#col3{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    width:50%;
    margin-right: 10px;
}
#motivation{
    height:50%;
    background-color: white;
    margin-bottom: 10px;
}
#channels{
    height:50%;
    background-color: white;
    margin-bottom: 10px;
    display:flex;
    flex-direction: column;
}

#col4{
    display:flex;
    flex-direction: column;
    background-color: rgb(44, 43, 43);
    width:50%;    
}
#frustrations{
    height:100%;
    background-color: white;
    margin-bottom: 10px;
}
#technology {
    height: 100%;
    background-color: white;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column; /* Stack header and images vertically */
}
#technology h3 {
    margin-bottom: 10px; /* Space between the header and the images */
}

#technology .images-container {
    display: flex;
    justify-content: center;
    background-color: white;
}

#technology img {
    display: inline-block;
    width: 10%;
    margin: 0 10px; /* Adds space between the images */
    background-color: white;
}
#channels h3 {
    margin-bottom: 10px; /* Space between the header and the images */
}

#channels .images-container {
    display: flex;
    justify-content: center;
    background-color: white;
}

#channels img {
    display: inline-block;
    width: 10%;
    margin: 0 10px; /* Adds space between the images */
    background-color: white;
}