* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 25px;
    background-image: linear-gradient(to right, #952686, #c884e6);
    background: url(Images/marble.jpg);
    background-size: cover;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 100px;
}

h1 {
    font-family: "Henny Penny", system-ui;
    font-size: 300%;
    padding-top: 20px;
}

img {
    border-radius: 20%;
    border: 5px solid #bf9b30;
    margin:20px;
}

.aboutme {
    padding: 30px;
    display: flex;
}
#info{
    display:flex;
    padding:20px;
    background-color: rgba(191, 155, 48, 0.3);
    border-radius: 30px;
    border: 5px solid gray;
    margin:auto;

    max-height: 300px;

    flex-direction: column;
    justify-content: center;
}
#info h1{
    text-align: center;
}
#info ol{
    display:flex;
    justify-content:space-between;
    padding-left:20px;
}
/* ----- Project CSS ----- */

.projects {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

#los {
    background-color: rgba(191, 155, 48, 0.3);
    border-radius: 30px;
    border: 5px solid gray;
    padding: 20px;

    min-width: 500px;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#los a {
    text-decoration: none;
    color: #3b3b3b;
}

#los a:hover {
    color: #784894;
    text-decoration: underline;
}

/* 
#projects div {
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
}
#projects article{
    background-color: rgba(191, 155, 48, 0.3);
    border-radius: 30px;
    border: 5px solid gray;
    padding: 20px;
    min-width: 500px;
    min-height: 300px;
    text-align: center;
}

#projects article a {
    text-decoration: none;
    color: #3b3b3b;
}

#projects article a:hover {
    color: #784894;
    text-decoration: underline;
} */

#contactme {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    flex-direction: row;
    margin-top: 20px;
}

.email {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(191, 155, 48, 0.3);
    border-radius: 30px;
    border: 5px solid gray;
    padding: 20px;
    min-width: 575px;
    min-height: 300px;
}

.email a {
    text-decoration: none;
    color: #3b3b3b;
}

.email a:hover {
    color: #784894;
    text-decoration: underline;
}