#accepted{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.accepted-header{
    font-size: var(--heading1);
    display: flex;
    justify-content: center;
    height: 600px;
    align-items: center;
    border-bottom: 1px solid var(--line-gray);
    color: white;
    position: relative;
    padding: 0 var(--gutter);
}
.accepted-header h1{
    z-index: 2;
    display: block;
    padding: 0 var(--gutter);
    line-height: 5rem;
    text-align: center;
    animation: show 2s ease-in-out;
}
@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.line-break{
    display: none;
}
@media screen and (max-width:830px){
    .line-break{
        display: block;
    }
    .accepted-header h1{
        font-size: 7vw;
    }
}
.accepted-header strong{
    font-weight: 900;
    color: var(--green-1);
}
.accepted-content{
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
    align-items: center;
    font-size: var(--body1);
    padding: 8rem var(--gutter);
    text-align: center;
    line-height: 2.5rem;
    word-break: keep-all;
    animation: show 2s ease-in-out;
}
.accepted-content p:nth-child(1){
    font-size: var(--heading3);
    font-weight: 900;
}
.accepted-content > a{
    position: relative;
    color: var(--green-1);
    font-size: var(--subheading);
    margin-bottom: var(--gutter);
}
.accepted-content > a:hover,
.accepted-content > span > a:hover{
    top: -2px;
}
.accepted-content > span{
    color: var(--subtext-gray);
    margin-top: var(--gutter);
}
.accepted-content > span > a{
    color: white;
    position: relative;
}

/* firework */
#firework{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}