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


html, body {
    font-family: 'Funnel Display', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }


main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("./assets/touhou.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Main Info */

.card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 140px 90px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.my-projects{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.project{
    padding: 70px 30px;
    border-radius: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s;
}

.project:hover{
    background-color: rgba(255, 255, 255, 0.45);
}

.project img {
    user-select: none;
}

.project a{
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.project a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    transform: scale(1.05);
}
.project a:active{
    transform: scale(0.75);
}

.first img {
    width: 200px;
    height: auto;
}

.second img {
    width: 100px;
    height: auto;
}

.card .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

/* Footer */

footer{
    padding: 6px 0px ;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(40, 43, 63);
}

footer p{
    color: white;
}