body, html {
    margin: 0;
    padding: 0;
    font-family: monospace;
    background-image: url(images/polka-dot-bg.webp);
    background-size: repeat;
    color: black;
}

body {
    color: black;
}

h1, h2 {
    font-family: 'Courier New', Courier, monospace;
}

.header {
    width: 20%;
    height: 75%;

    color: whitesmoke;
    position: relative;
    top: 25px;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
}

.main-content {
    width: 95%;
    position: relative;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.columns {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 5, 5);
    background-color: rgba(29, 57, 64, 0.4);

}

/* left column + boxes */
.left {
    display: inline-flex;
    gap: 10px;
    background-color: #5386A6;
    width : 30%;
    height: 400px;
    border-radius: 2px;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.me-box {
    flex: 3;
    width: 50%;
    height: 70%;
    background-image: url(accessories/about-me/blue-stripes.png);
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    flex-direction: row;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-pic-box {
    flex: 1;
    width: 50%;
    height: 40%;
    background-color: whitesmoke;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

.links-box {
    flex: 2;
    width: 7.5%;
    height: 30%;
    position: absolute;
    top: 250px; 
    text-align: center;
    background-color: whitesmoke;
    padding: 15px;
    border-radius: 5px;
}

/* center column + boxes */
.center {
    width:60%;
    background-color: white;
    border-radius: 2px;
    padding: 20px;
}
.about-me-box {
    background-color: lightgrey;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.updates-box {
    background-color: lightgrey;
    padding: 15px;
    border-radius: 5px;
}

/* right column + boxes */
.right {
    flex-direction: column;
    width: 10%;
    background-color: #5386A6;
    border-radius: 2px;
    padding: 5px;
}
.blinkies-box {
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.to-do-box {
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    gap: 50px; 
}
