body {
    font-family: Arial, sans-serif;
    background-color: #1f1f2c;
    color: #333;
}

div.wrapper{
    width: 80%;
    margin: auto;
    background-color: #181824;
    color:#f4f4f4
}

header.header{
    display: flex;
    flex-direction: row-reverse;
    justify-content:center;
}
header.header h1{
    padding-top: 30px;
}

.darker-white-bg {
    background-color: #cecece !important;
}

#footer {
    margin: auto;
    text-align: center;
    background-color: #d4d4d4;
    padding-bottom: 1em;
    padding-top: 1em;
    color:#333
}
#footer a {
    margin-left: 0.3em;
    margin-right: 0.3em;
}
#footer img#discord:hover{
    cursor: pointer;
}
#techstack {
    text-align: center;
    width: 60%;
    margin: auto;
    margin-bottom: 3em;
    margin-top: 3em;
}

#techstackimages img{
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

#specimages {
    display: flex;
}
#specimages h4{
    padding-right: 15%;
}

#bio {
    width: 60%;
}

#about {
    display: flex;
}
#personalImage {
    width: 40%;
    text-align: end;
}

@media (max-width: 800px) {
    #bio {
        width: 100%; /* Makes the width 100% for screens less than 800px wide */
        /* The div will naturally be centered since its width is 100% */
        text-align: center; /* This will center the text inside the div */
    }
    #personalImage {
        display: none;
    }
}
@media (max-width: 500px) {
    div.wrapper{
        width: 100%;
    }
}
