@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

#background {
    display: flex;
    height: 100vh;
    background-color: #a2cde6;
    padding-left: 0;
    padding-right: 0;
}

.forImage {
    width: 55%;
    height: 100vh;
    background-image: url("media/patrick-schneider-Qackx5pq2ts-unsplash.jpg");
    background-size: cover;
    margin-left: auto;
}

.forText {
    width: 45%;
    display: flex;
    align-items: flex-start;
    /* optional: aligns content to the top */
    justify-content: flex-start;
    /* optional: aligns content to the left */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* Ensures it fills parent for vertical centering */
}

.credits {
    display: flex;
    text-align: end;
    align-self: flex-end;
    justify-content: flex-end;
    margin-top: auto;
    margin-right: 10px;
    font-family: "Outfit", sans-serif;
    color: #b18864;
    font-weight: 400;
}

h2,
h3 {
    font-family: "Outfit", sans-serif;
}

h2 {
    font-size: 60px;
    font-weight: 800;
    color: #b18864;
}

h3 {
    font-weight: 500;
    color: white;
}

#buttonContain {
    width: 20%;
    height: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0);
    border-radius: 30px;
    text-decoration: none;
}


#exploreProjects {
    width: 100%;
    border-width: 3px;
    border-color: rgba(0,0,0,0);
    background-color: white;
    border-radius: 30px;
    height: 100%;
    margin-top: 5%;
    font-family: "Outfit", sans-serif;
    color: #a2cde6;
    font-weight: 600;
    text-align: center;
    transition: 1s;
}

#exploreProjects:hover {
    background-color: #a2cde6;
    color: white;
    border-color: white;
    transition: 1s;
}
