html {
    scroll-behavior: smooth;
}

.board-image{
    margin: 30px 0px 40px 0px;
    max-width: min(90vw, 700px);

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.content .main-title{
    font-weight: 500;
    margin-top: 48px;
    font-size: min(10vw, 4.5rem);
    text-align: center;
}

.content a{
    margin-top: 16px;
    background-color: rgb(87, 87, 87);
    border-radius: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    padding: 16px 48px 16px 48px;
    transition: 0.1s;
}

.content a:hover{
    background-color: rgba(87, 87, 87, 0.8);
}

.description{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 50px 20px 50px;
}

.description-text{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    background: rgb(82, 82, 82);
    padding: 16px;
    max-width: min(300px, 50%);
    border-radius: 8px;
}

.description-text-title{
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 24px;
}

.description-text-content{
    font-weight: 400;
    font-size: 18px;
}

.learn-more{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30vh 0vh 15vh 0vh;
}

.player-image{
    margin-right: 20px;
    max-width: min(400px, 50%);

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sub-title{
    font-weight: 500;
    font-size: min(5vw, 2.3rem);
    text-align: center;
}

@media screen and (max-width: 800px) {
    .description{
        flex-direction: column;
    }
    .description-text{
        margin-top: 20px;
        max-width: 80%;
    }
    .description-text-title{
        font-size: 4vw;
    }
    .description-text-content{
        font-size: 3.5vw;
    }
    .content a{
        font-size: min(24px, 5vw);
    }
}

@media screen and (max-width: 500px) {
    .content .main-title{
        margin-top: 15vh;
    }
}