body {
    background: url("./img/background.png") no-repeat center center fixed;
    background-size: cover;
}
.page-title {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 200px;
    width: 500px;
    height: auto;
    user-select: none;
    opacity: 0;
    animation: page-title 0.5s ease-in-out 0.5s forwards;
}
@keyframes page-title {
    from {
        opacity: 0;
        transform: translate(-50%, 100px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0px);
    }
}
.projects {
    width: 1300px;
    height: 1000px;
    position: absolute;
    top: 400px;
    transform: translateX(100px);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding-top: 50px;
    opacity: 0;
    animation: projects 0.5s ease-in-out 0.6s forwards;
}
@keyframes projects {
    from {
        transform: translate(100px, 100px);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translate(100px, 0px);
    }
}
.projects-title {
    color: white;
    font-family: "Font2-Black", serif;
    font-size: 30px;
    position: absolute;
    left: 50px;
    top: 50px;
}
.type-title {
    color: white;
    font-family: "Font2-Bold", serif;
    font-size: 24px;
    position: absolute;
    right: 50px;
    top: 50px;
}
.projects-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project a{
    width: fit-content;
    position: relative;
    top: 20px;
    margin-left: 50px;
    color: white;
    font-family: "Font2-Black", serif;
    font-size: 24px;
    transition: all 0.2s ease-in-out;
    margin-top: 10px;
    height: 30px;
    text-decoration: none;
}
.project:first-child {
    margin-top: 0;
}
.project a:hover {
    cursor: pointer;
    color: #00BDFF;
}
.project-type {
    position: absolute;
    right: 50px;
    color: white;
    font-family: "Font2-Bold", serif;
    font-size: 24px;
}
.introductions {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 460px;
    height: 350px;
    position: absolute;
    top: 400px;
    right: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding-top: 50px;
    opacity: 0;
    animation: introductions 0.5s ease-in-out 0.7s forwards;
}
@keyframes introductions {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.introductions-title {
    font-family: "Font2-Black", serif;
    font-size: 30px;
    background: linear-gradient(to right, #00BDFF, #2eeea1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.introductions-content {
    margin-top: 20px;
    color: white;
    font-size: 20px;
    font-family: "Font2-Bold", serif;
}
.introductions-end {
    margin-top: 20px;
    text-align: center;
    font-family: "Font2-Black", serif;
    font-size: 20px;
    background: linear-gradient(to right, #00BDFF, #2eeea1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}