#logo{
    width: 200px;
    height: auto;
    margin-top: 10px;
}

.resized-pic{
    width: 400px;
    height: auto;
    border: 3px solid #9CAF88;
    border-radius: 5px;
    margin-left: 3%;
    margin-top: 3%;
}

#sidetitletext{
    color: #393939;
    font: bold 50px 'Lato';
    text-decoration: none;
    margin: 10px;
}

#sidebodytext{
    color: #393939;
    font: bold 20px 'Lato';
    text-decoration: none;
    text-align: center;
}

html{
    background-color: #f4f0eb;
}

.top-nav-button{
    color: #9CAF88;
    padding: 15px;
    font: bold 20px 'Raleway';
    text-decoration: none;
    cursor: pointer;
}

.top-nav-button:hover{
    color: gray;
}

.bottom-nav-button:hover{
    color: gray;
}

.bottom-nav-button{
    color: #9CAF88;
    padding: 10px;
    font: bold 15px 'Raleway';
    text-decoration: none;
    cursor: pointer;
}

#bottomnav{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

#topnav{
    text-align: left;
    margin-bottom: 15px;
}

.top-div{
    display: flex;
}

.content-div{
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
    padding-top: 50px;
    padding-left: 60px;
    padding-right: 20px;

}

#connect-with-me-button{
    background-color: #9CAF88;
    font: bold 15px 'Raleway';
    text-decoration: none;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

#connect-with-me-button:hover{
    color: gray
}

#aboutmebodytext{
    color: #393939;
    font: bold 20px 'Lato';
    text-decoration: none;
    text-align: center;
}

.about-me-pic{
    width: 400px;
    height: auto;
    border: 3px solid #9CAF88;
    border-radius: 5px;
    margin-right: 20px;
    margin-top: 3%;
}

#aboutmetitletext{
    color: #393939;
    font: bold 50px 'Lato';
    text-decoration: none;
    margin: 10px;
}

.about-me-div{
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
    padding-top: 50px;
    padding-left: 10px;
}

#contacttitletext{
    color: #393939;
    font: bold 50px 'Lato';
    text-decoration: none;
    margin: 1px;
}

.contact-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: 15px;
}

.contact-button-div {
    position: relative;
}

.contact-button-div > a > svg:hover {
    opacity: 0.5;
}


.contact-button {
    width: 75px;
    height: auto;
    color: black;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.contact-button-svg {
    width: 75px;
}


.title-projects{
    color: #393939;
    font: bold 50px 'Lato';
    text-decoration: none;
    margin: 20px;
    padding: 10px;
}

.proj-button{
    background-color: #9CAF88;
    font: bold 15px 'Raleway';
    text-decoration: none;
    border: none;
    color: white;
    margin: 45px;
    padding: 25px;
    min-width: 20%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

.proj-button:hover {
    color: gray;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    margin-bottom: 35px;
}

.gallery-img{
    width: 100%;
    height: auto;
}

.gallery-item{
    border: 3px solid #d6d0c5;
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-txt-style{
    text-align: center;
    padding: 10px;
    font: bold 17px 'Lato';
    color: #393939;
}

.col-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.alt-sp{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 30px;
    width: 600px;
    height: auto;
}

.proj-text{
    color: #393939;
    font: bold 20px 'Lato';
    text-decoration: none;
    text-align: center;
    margin: 20px;
    padding: 15px;
    background-color: #d6d0c5;
    width: 90%;
    height: auto;
    margin-left: 55px;
}

.contact-pics {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.fade-in {
    animation-name: fade-in;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fade-in.cascade {
    animation-delay: calc(var(--order) * 0.2s);
}

.fade-in-left {
    animation-name: fade-in-left;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.fade-in-right {
    animation-name: fade-in-right;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fade-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fade-in-right {
    0% {
        transform: translateX(100%);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}

.contact-pics > a > img {
    width: 400px;
    height: auto;
    margin: 20px;
    border: 3px solid #9CAF88;
    border-radius: 5px;
}

.links{
    text-decoration: none;
    display: inline;
}

.art-gallery-div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
}

.art-gallery-div > a > img{
    width: 90%;
    height: auto;
    margin: 20px;
    border: 3px solid #9CAF88;
    border-radius: 5px;
}