
.Title-Main {
    user-select: none;
    width: 100%;
    font-family: "Font1", sans-serif;
    font-size: 80px;
    color: white;
    justify-content: center;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: title 0.5s ease-in-out 0.5s forwards;
    margin: 0;
}
@keyframes title {
    from {
        opacity: 0;
        transform: translateY(250px);
    }
    to {
        opacity: 1;
        transform: translateY(200px);
    }
}
.Title-Sub {
    user-select: none;
    font-family: "Font2-Black", sans-serif;
    font-size: 30px;
    justify-content: center;
    display: flex;
    color: white;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-left: 285px;
    margin-right: 285px;
    opacity: 0;
    animation: title 0.5s ease-in-out 0.6s forwards;
}
.content-section {
    width: 80%;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(152, 147, 147, 0.1);
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    animation: content-section 0.5s ease-in-out 1.1s forwards;
}
@keyframes content-section {
    from {
        opacity: 0;
        transform: translateY(500px);
    }
    to {
        opacity: 1;
        transform: translateY(400px);
    }
}
.content-item-left {
    padding: 50px;
    height: 150px;
    margin-bottom: 50px;
    text-align: left;
}
.content-item-left:first-child {
    margin-top: 50px;
}
.content-item-right {
    padding: 50px;
    height: 150px;
    margin-bottom: 50px;
    text-align: right;
}
.content-title {
    user-select: none;
    font-family: "Font2-Black", sans-serif;
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
    display: block;
}
.content-description {
    user-select: none;
    font-family: "Font2-Regular", sans-serif;
    font-size: 20px;
    color: white;
    display: block;
}