* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    max-width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
}

.ticket {
    width: 650px;
    height: 320px;
    background-color: #222;
    cursor: pointer;
    border: 5px solid transparent;
    border-image: linear-gradient(to right, #d45877, #ec585c, #e7d155, #56a8c6);
    border-image-slice: 1;
    position: relative;
    z-index: 9;
    display: flex;
}

.ticket::before {
    content: "";
    width: 81px;
    height: 40px;
    background-color: #222;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    border: 5px solid #d45877;
    border-bottom: 0;
    transform: rotate(90deg);
    position: absolute;
    top: 41%;
    left: -28px;
    z-index: 99;
}

.ticket::after {
    content: "";
    width: 81px;
    height: 40px;
    background-color: #222;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    border: 5px solid #56a8c6;
    border-bottom: 0;
    transform: rotate(270deg);
    position: absolute;
    top: 41%;
    right: -28px;
    z-index: 99;
}

.left {
    display: flex;
    flex-direction: column;
    border-right: 2px dashed #999;
    height: 100%;
}

.title {
    display: flex;
    margin-left: 50px;
    margin-top: 40px;
    flex-direction: row;
    gap: 15px;
}

.title .img {
    width: 80px;
    height: 80px;
}

.title .img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.description .name h1 {
    color: #fff;
}

.description .github {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    color: #fff;
    font-size: 17px;
}

.description .github i {
    font-size: 20px;
}

.next-img {
    margin-left: 50px;
    margin-top: 70px;
}

.next-img img {
    width: 75%;
}

.right {
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    transform: rotate(90deg);
    font-weight: bold;
}

.right span {
    margin-bottom: 15px;
    margin-right: 10px;
    font-size: 30px;
    text-decoration: underline;
}