.top {
    display: flex;
}

.intro {
    padding: 10vh 10vw 5vh 10vw;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-image: linear-gradient(to bottom, var(--bg), #51aafa);
    justify-content: center;
    padding-top: 86px;
}

.ad-board {
    width: 100%;
    display: flex;
    gap: 10px;
    background-color: var(--brand);
    border-radius: 20px;
    flex-direction: column;
    padding: 20px;
}

.ad {
    display: flex;
    padding: 10px;
    margin: 0;
}

.text {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
}

.big, .little, .member-text {
    margin: 0;
}

.member-text{
    font-family: "Verdana", sans-serif;
    font-size: 45px;
    font-weight: 600;
    padding: 10px;
}

.big{
    font-family: "Verdana", sans-serif;
    font-size: 40px;
    font-weight: 600;
    padding: 10px;
}

.little {
    font-size: 16px;
    padding: 10px;
    padding-left: 13px;
}

.button{
    display: inline-flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.button a{
    text-decoration: none;
    color: #332b2b;
    padding: 15px 24px;
    font-size: 20px;
    border: 2px solid rgb(40, 40, 40);
    border-radius: 20px;
}

.button a:hover{
    background-color: rgba(81, 77, 77, 0.144);
    border-color: rgb(81, 77, 77);
}

.ad-board hr{
    display: flex;
    height: 1px;
    width: 80%;
    justify-content: center;
}