/*Sticky footer with flexbox*/

html,
body {
    height: 100%;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

/*--------------------------*/

/*Skeleton*/

.footer {
    height: 120px;
    background-color: transparent;
    color: #e0e0e0;
}

.header {
    height: 100px;
    background-color: transparent;
    color: #e0e0e0;
    display: flex;
    justify-content: space-around;
}

body {
    background-image: linear-gradient(to right, #263238, #000a12);
    background-color: black;
    font-family: 'Raleway', sans-serif;
    color: #e0e0e0;
}

.header-divider {
    height: 1px;
    background-image: linear-gradient(to right, #ffffff, #eeeeee);
    width: 90%;
    margin: auto;
    margin-bottom: 4%;
}

.footer-divider {
    height: 2px;
    background-image: linear-gradient(to right, #ffffff, #eeeeee);
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

.footer-text {
    color: #e0e0e0;
    text-align: center;
}

.footer-list {
    display: flex;
    width: 20%;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    margin: auto;
}

.header-list {
    height: 100%;
    display: flex;
    width: 20%;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}

.header-text {
    height: 100%;
    display: flex;
    align-items: center;
}

a {
    color: #e0e0e0;
}

a:hover {
    background: linear-gradient(to right, #e07150, rgb(252, 108, 35));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-decoration: none;
}

/*------------------------------------------------*/

.content-name {
    text-align: center;
}

.content-text {
    text-align: center;
}

.content-list {
    width: 65%;
    margin: auto;
    margin-top: 3%;
    overflow: hidden;
    height: 400px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.project {
    height: 400px;
    width: 290px;
    min-width: 290px;
    border: 1px solid #FF8A50;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: 8px;
    margin-right: 8px;
    margin: auto;
}

.div-button {
    width: 10%;
    margin: auto;
    margin-top: 1%;
}

.project-button {
    width: 100%;
}

.button {
    border: none;
    padding: 6px;
    border-radius: 20px;
    font-weight: bold;
    color: #000a12;
    background: linear-gradient(to right, #e07150, rgb(252, 108, 35));
    border: 1px solid rgb(252, 108, 35);
    transition: 0.2s color ease-in;
    transition: 0.2s border ease-in;
}

button:hover {
    color: #e0e0e0;
    border: 1px solid #e0e0e0;
}

button:focus{
    outline: 0px;
}

.carousel-container {
    display: flex;
}

.left-arrow-container {
    width: 17.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-arrow-container {
    width: 17.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow,
.right-arrow {
    cursor: pointer;
}