
body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background-color: #fbff00; 
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.header {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    align-items: center;
    width: 100%;
    height: 20px;
    padding: 10px 5px;
    background-color: #b8b8b8;
}

.header-left h1 {
    font-size: 1.5em;
    margin: 20px;
    font-weight: normal;
}

.header-right {
    font-size: 1.5em;
    display: flex;
    margin: 20px;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-right a {
    font-size: 1em;
    text-decoration: none;
    color: #000;
    font-weight: normal;
}


@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: 10px;
        padding: 20px;
        
    }

    .header-left h1 {
        font-size: 1em;
    }

    .header-right a {
        font-size: 0.65em;
    }
    
    .additional-header h2 {
        font-size: 1em; /* Responsive adjustment */
    }
}


.main-content {
    display: flex;
    padding: 20px;
    gap: 20px;
    flex: 1; /* Allows main content to grow and take available space */
}

.left-column {
    flex: 1;
    border-right: 1px solid #000;
    padding-right: 20px;
    text-align: justify;
    font-size: 20px;
}

.profile-img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

.cv-download {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 10px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
}

.right-column {
    flex: 2;
    padding-left: 10px;
    text-align: justify;
    font-size: 16px;
    overflow-y: auto;
}

.right-column h2 {
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

.fa-youtube-play {
    text-decoration: none;
}   
.fa-instagram {
    text-decoration: none;
}


.footer {
    width: 100%;
    padding: 10px 0;
    background-color: #fbff00; 
    color: #000000;
    text-align: center;
    border-top: 0px solid #000;
    position: relative;
    bottom:     0; /* Sticks footer to the bottom */
}

.footer p {
    margin: 0;
    font-size: 0.8em;
}

@media (max-width: 768px) {

    .main-content {
        flex-direction: column;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid #000;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .right-column {
        padding-left: 0;
    }
}
