@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    color: #fff;
}
body {
    width: 100%;
    height: 110vh;
    background-color: rgb(104, 24, 104);
    padding: 50px 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.projects {
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    padding: 20px 20px;
}
.card {
    margin: 10px;
    width: 350px;
    height: 300px;
    padding-bottom: 15px;
    border-radius: 5px;
    background-color: #00000099;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.card img {
    width: 100%;
}
p {
    font-weight: 100;
}
a {
    text-decoration: none;
    line-height: 30px;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    width: 40%;
    background-color: rgb(27, 64, 163);
}
.copyrights {
    position: fixed;
    transform: rotate(90deg);           
    right:48%;
    width: 100%;
    height: 40px;
    text-align: center;
}
.copy-p {
    font-weight: 300;
    letter-spacing: 3px;
}