body {
    background-color: #f5f5f5;
    margin: auto;
    min-width: 320px;
    text-size-adjust: none;
    width: 100%;

}

button {
    border-color: transparent;
    cursor: pointer;

}

.uploadButton {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.pageLayout {

    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    width: fit-content;

}

.project-container {
    background-color: #bb0a21ff;
    max-width: 560px;
    align-self: center;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: #2e282aff 0px 0px 10px;
    min-width: 300px;
    width: 100%
}

.projectImage {
    width: 100%;
    height: auto;
    height: 100%;
    max-height: 150px;
    object-fit: cover;



}

header {
    background-color: #2e282aff;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    height: 50px;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.callToActionButton {
    background-color: #bb0a21ff;
    padding: 15px;
    border-radius: 7px;
}












/* CSS HEX 
--dark-orange: #fb8b24ff;
--cultured: #f5f5f5ff;
--raisin-black: #2e282aff;
--firebrick: #bb0a21ff;
--amber: #ffbe0bff;

--dark-orange: hsla(29, 96%, 56%, 1);
--cultured: hsla(0, 0%, 96%, 1);
--raisin-black: hsla(340, 7%, 17%, 1);
--firebrick: hsla(352, 90%, 39%, 1);
--amber: hsla(44, 100%, 52%, 1);


$dark-orange: #fb8b24ff;
$cultured: #f5f5f5ff;
$raisin-black: #2e282aff;
$firebrick: #bb0a21ff;
$amber: #ffbe0bff;


$dark-orange: hsla(29, 96%, 56%, 1);
$cultured: hsla(0, 0%, 96%, 1);
$raisin-black: hsla(340, 7%, 17%, 1);
$firebrick: hsla(352, 90%, 39%, 1);
$amber: hsla(44, 100%, 52%, 1);


$dark-orange: rgba(251, 139, 36, 1);
$cultured: rgba(245, 245, 245, 1);
$raisin-black: rgba(46, 40, 42, 1);
$firebrick: rgba(187, 10, 33, 1);
$amber: rgba(255, 190, 11, 1);


$gradient-top: linear-gradient(0deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-right: linear-gradient(90deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-bottom: linear-gradient(180deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-left: linear-gradient(270deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-top-right: linear-gradient(45deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-bottom-right: linear-gradient(135deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-top-left: linear-gradient(225deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-bottom-left: linear-gradient(315deg, #fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
$gradient-radial: radial-gradient(#fb8b24ff, #f5f5f5ff, #2e282aff, #bb0a21ff, #ffbe0bff);
*/