a { color: rgb(155, 220, 255); }

h1 {
    font-size: 34px;
    color: rgb(181, 206, 168);
    font-weight: bold;
}

h2 {
    color: rgb(215, 185, 125);
    font-size: 20px;
    font-weight: normal;
}

body {
    margin: 0 0 0 0;
    padding: 0;
    font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
    font-weight: bold;
    background-color: rgb(35, 35, 35);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex; 
    flex-direction: column-reverse;
    flex: 1;
    justify-content: center;
    align-items: center;
}

#info-side {
    max-width: 350px;
    min-width: 200px;
    padding: 20px;
    text-align: center;
}

#picture-side img {
    max-width: 200px;
    border-radius: 50%;
    border: 5px rgb(60,60,60) solid;
    margin-top: 15px;
}

#contact-info div {
    margin: 20px 0;
}

.contact-info-item {
    margin-bottom: 15px;
    color: rgb(205, 205, 205);
    font-weight: normal;
    font-size: 20px;
}

.contact-info-item i {
    color: rgb(195, 95, 45);
    padding-right: 25px;
}

#social-icons a {
    margin-right: 10px;
}

@media (min-width: 768px) {
    main { flex-direction: row; }
    #info-side { text-align: left; }
    #picture-side img { 
        max-width: 250px; 
        margin-top: 15px;
    }
}

/******************* FOOTER *******************/

footer {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
    background-color: rgb(60,60,60);
    color: rgb(215, 215, 215);

    display: flex;
    justify-content: center; 
    align-items: center; 
}

#footer-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    max-width: 1200px;
    padding: 10px 20px;
}

#footer-left-content {
    text-align: left;
    margin-bottom: 10px;
    margin-right: 10px;
}

#footer-right-content img {
    margin-right: 5px;
}

@media (min-width: 768px) {
    #footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    #footer-left-content {
        text-align: left;
        margin-bottom: 0;
    }
    
    #footer-right-content {
        justify-content: flex-end;
    }
}



