*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../images/bg-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: rgb(240, 233, 233);
}

.a {
    color: rgb(255, 233, 205);
}

h1, h2, h3, h4, h5, h6{
    font-family: "Lora", serif;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
}

img {
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-family: "roboto",
    sans-serif;
    color: aliceblue;
    text-transform: uppercase;
    font-weight: 500;
}

main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.project-img {
    max-width: 700px;
    text-align: center;
    border-radius: 2%;
    display: flex;
    flex-direction: column;
}

.text {
    font-style: oblique;
    font-size: large;
    background-color: rgb(0, 4, 255);
}

.photo {
    border-radius: 20px;
    max-width: 300px;
}

.profile-card {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
}



.profile-pic {
    max-width: 850px;
   border-radius: 20px;
   
}

.bio {
    margin-top: 40px;
}

.button {
    background-color: #828282;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: roboto;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.1);
}

section.about-me {
    display: flex;
    gap: 30px;
    background-color: rgb(0, 0, 0);
}

.about-img img {
    border-radius: 10%;
}
footer {
    background-color: aliceblue;
    padding: 50px;
    color: rgb(0, 0, 0);
    text-align: center;
}

@media screen and (max-width: 500px) {
    img.profile-pic {
        max-width: 250px;
        object-fit: cover;
    }
}
@media screen and  (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }
    .project-img {
    flex-direction: column;
}

}

@media screen and (min-width: 1060px) {
        .project-container {
            display: flex;
            gap: 20px;
        }
}