/* in the future i want to implement pywal to automatize color changing, but for now nah
 */

/* Add a local font using @font-face */
@font-face {
    font-family: 'Joystix Mono';
    src: url('media/joystix_monospace.otf');
}

body {
    font-family: 'Joystix Mono';
    grid-template-rows: auto 1fr auto;
    background-color: #000000;
    color: #e9dfeb;
    text-align:center;
    min-height: 100vh; 
}


header {
    background-color: #160e18;
    color: #d983e4;
    text-align:center;
}


footer {
    background-color: #2d1e2f;
    text-align: center;
}

a {
    color: #d983e4;
    text-decoration: none
}

a:hover {
    color:#e08393;
    text-decoration: none
}

p {
    white-space: pre-line;
}

#me-img {
    width: 20%;  /* Set the width of the image */
    height: auto;  /* Maintain the aspect ratio */
    float: right;  /* Float the image to the right */
    margin-left: 20px;  /* Optional: Adds space between the image and the text */
    margin-bottom: 10px; /* Optional: Adds space below the image */
}

#media-img {
    width: 35%;  /* Set the width of the image */
    height: auto;  /* Maintain the aspect ratio */
    /* float: ;  Float the image to the right */
    margin-left: 10px;  /* Optional: Adds space between the image and the text */
    margin-bottom: 5px; /* Optional: Adds space below the image */

}

footer img{
    width: 80px;
    height: 32px;
}




