.guide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.span{
    color: var(--highlighter-c);
}

.cu-container {
    backdrop-filter: blur(25px);
    background-color: rgba(0, 0, 0, 0.363);;
    border-radius: 15px;
    padding: 30px;
    width: 90vw;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    border-color: var(--primary-c);
    
}

.cu-guidelines-header {
    font-size: 17px;
    padding-bottom: 20px;
    text-shadow: 2.85px 2.85px 0.532px black;
    display: flex;
    align-items: center;

}

.cu-guidelines-header img{
    height: 4rem;
    object-fit: contain;
    padding-right: 0.7rem;
    transform: rotate(20deg);
    margin-top: -0.1rem;
}

.cu-team-formation h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2.85px 2.85px 0.532px black;
}

.cu-team-formation ol {
    text-align: left;
    margin-bottom: 20px;
    margin-left: 20px;
    color: white;
}

.cu-team-formation ol li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5em;
}

.cu-team-formation p {
    font-size: 15px;
    line-height: 1.5em;
    margin-bottom: 30px;
    text-align: left;
}

.cu-judgement-btn button {
    border: none;
    color: white;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    width: 30%;
    cursor: pointer;
}

.cu-judgement-btn button:hover {
    background-color: white;
    color: black;
}

@media (max-width: 515px) {

    .cu-guidelines-header {
        font-size: 7px;
        padding-bottom: 20px;
    }
    .cu-judgement-btn{
        width: auto;
    }
    .cu-team-formation h2 {
        font-size: 25px;
    }
    .cu-container {
        width: auto;
        height: auto;
    }
    .cu-team-formation ol li {
       font-size: 12px;
    }
    .cu-team-formation p {
        font-size: 12px;
    }
    .cu-judgement-btn button {
        width: auto;
        font-size: 1em;
    }
    .cu-team-formation ol {
        text-align: left;
    }
    .guide{
        margin-left: 10px;
        margin-right: 10px;
    }
    
}

