@charset "UTF-8";

a {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}

p {
    text-wrap: auto;
}



.background {
    background-image: url("Portfolio-img/Main-Background.png");
    height: 100vh;
    width: 100%;
    background-size: cover;
    padding: 50px 0 60px;
}

.background-sun {
    background-image: url("Portfolio-img/background-sun.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* width: 80vw; */
    height: 80vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "abhaya-libre", serif;
    color: #6B4747;
    font-size: 48px;
    text-align: center;
}

.page-title::before,
.page-title::after {
    content: '';
    width: 280px;
    height: 1px;
    background-color: #6B4747;
    margin-right: 30px;
}


.page-title::after {
    margin-left: 30px;
}

.page-title span {
    padding: 0 60px;
}



@media (max-width: 768px) {
    .background {
        height: auto;
        padding: 30px;
        width: 100vw;
    }

    .page-title::before,
    .page-title::after {
        margin: 0;
        width: 268px;
    }

    .page-title span {
        padding: 0 30px;
    }

    .background-sun {
        width: 100%;
        height: auto;
        margin: 160px auto;
    }
}