@font-face { font-family: 'slab' ; src: url(fonts/slab.ttf); } 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
}

.sidebar {
    width: 450px;
    background-color: #333;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.sidebar h2 {
    font-size: 32px; /* Increase the font size */
    font-weight: bold; /* Make it bold */
    color: white; /* Add a bright color to make it stand out (you can change this to any color you prefer) */
    margin-bottom: 15px; /* Adjust margin for spacing */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar h3 {
    font-size: 24px; /* Increase the font size */
    font-weight: bold; /* Make it bold */
    color: white; /* Add a bright color to make it stand out (you can change this to any color you prefer) */
    margin-bottom: 15px; /* Adjust margin for spacing */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar h2:first-of-type {
    margin-bottom: 30px; /* Increase gap under "Ryan Goff" */
}

.sidebar p {
    text-align: center;
    margin-bottom: 10px;
}

.main-content {
    margin-left: 450px;
    padding: 20px;
    flex-grow: 1;
}
.skills-hobbies-container {
    display: flex; /* Create a flex container */
    justify-content: space-between; /* Distribute space between the columns */
    margin-top: 20px;
}

.skills, .hobbies {
    flex: 1; /* Make each section take equal width */
    margin-right: 20px; /* Space between the columns */
}

.hobbies {
    margin-right: 0; /* Remove margin from the second column */
}
ul {
    padding-left: 20px; /* Adds space to the left for indentation */
    list-style-position: inside;
}

ul ul {
    padding-left: 20px; /* Additional indentation for nested lists */
}


@media (max-width: 768px) {
    .sidebar {
        width: 30%; /* Make sidebar full width */
        height: auto; /* Allow it to adjust to content */
        position: relative; 
        padding: 10px;
        text-align: center;
    }

    .sidebar img {
        width: 100px; /* Reduce image size */
        height: 100px;
    }

    .main-content {
        margin-left: 0; /* Remove left margin */
    }

    .skills-hobbies-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center;
        margin-top: 0px;
    }

    .skills, .hobbies {
        width: 100%; /* Full width */
        margin-right: 0; /* Remove margin */
    }
}
.skills-title {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
}
.skills-table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px auto;
    table-layout: fixed;
    margin-left: 50px;
}

.skills-table td {
    border: 2px solid white;
    padding: 5px;
    color: white;
    text-align: left;
    font-size: 16px;
    width: 50px;
    border: none;
}