@font-face {
    font-family: 'Julius Sans One';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.google.com/specimen/Julius+Sans+One);
}

body {
    color: #e65858;
	background-color: #dcdcda;
    font-weight: 300;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: .04em;
    font-size: 15px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    margin-left: 50px;
    margin-right: 50px;
    color: #666; /* Evil number because this is an evil website */
}

.container {
    max-width: 800px; /* Adjust as needed */
    padding: 40px 0;
    text-align: left;
}

header {
    background-color: rgba(51, 51, 51, 0); /* Transparent background with some opacity */
    padding: 20px 0;
    text-align: left; /* Align the text to the left */
}

.Logo{
    width: 700px;
    color: #e65858;
    font-family: garamond-premier-pro-display;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 50px;
    margin: 0 0 10px;
}

.container a{
    color: #517d9e;
    font-family: 'Julius Sans One', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
}

nav {
    text-align: center;
}

ul {
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

li {
    display: inline-block;
    margin-right: 20px;
}

.h1{
    margin-top: 50px;
}

a:hover {
    color: #ffffff;
    border-bottom: 2px solid #e65858;
}

.images {
    margin: 0;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

/* Create three equal columns that sits next to each other */
.column {
    flex: 30%;
    max-width: 33%;
}

/* All this nonsense is stuff for the about me section */
.p {
    margin-bottom: 15px;
    margin-top: 0px;
}

.paragraph{
    width: 49%;
    padding-left: 0px;
    display: inline-block;
}

.headshot{
    padding-right: 0px;
    width: 49%;
    float: right;
    object-fit: cover;
}

.headshot img{
    width: 100%;
    height: 400px
}

/* Mobile Support */
@media (max-width:600px) {
    .column{
        flex: 100%;
        max-width: 100%;
    }
    .images {
        padding: 5px;
    }
    .Logo {
        width: auto;
        font-size: 2.2em;
    }
    .container {
        margin: 10px;
        text-align: center;
    }
    ul {
        width: auto;
        justify-content: center;
    }
    a {
        font-size: 5vw;
        text-align: center;
    }
    .paragraph{
        width: 100%;
    }
    .headshot{
        width: 100% ;
    }
    .h1{
        margin-top: 30px;
    }
}