:root {
    --my-black: #0000004f;
    --my-white: #eeeeee;
    --nba-orange: #f26d00;
    --background-color: #26262D;
    --navbar-black: #161619;

    /* New color */
    --high-purple: #8B1AE7;
    --low-purple: #E6007E;
    /* Fonts */
    --chakra: "Chakra Petch", sans-serif;
    --chakra-title: normal normal 700 25px "Chakra Petch", sans-serif;
    --bayon: "Bayon", sans-serif;
    --dm-sans: "DM Sans", sans-serif;
}

body {
    background-color: #26262D;
    font-family: var(--dm-sans);
    font-size: 20px;
    color: #eeeeee;
    user-select: none;
}

h1,h2 {
    font-size: 25px;
    /* font-family: 'Nautilus', 'PT Serif', cursive; */
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: italic;
}

@media only screen and (min-width : 768px) {
    h1, h2 {
        font-size: 35px;
    }
}

a {
    text-decoration: none;
}


/* profile btn */
.profile-btn {
    width: 90%;
    margin-bottom: 10px;
    background-color: #161619;
    color: #eeeeee;
    box-shadow: 5px 5px black;
    border: none;
    padding: 6px 12px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    place-self: center;
    border-radius: 5px;
    font-family: var(--dm-sans);
    font-size: 14px;
}

@media only screen and (min-width : 768px) {
    .profile-btn {
        width: 70%;
        text-wrap: balance;
    }
}

.profile-btn:hover {
    background-image: linear-gradient(to right, var(--high-purple), var(--low-purple));
    color: #eeeeee;
    text-decoration: none;
    transition: background-imgage .5s ease;
    -webkit-transition: background-image .5s ease;
}

.profile-btn:focus {
    text-decoration: none;
    color: #eeeeee;
}

.profile-btn:active {
    box-shadow: 2px 2px black;
    transform: translateY(4px);
}

.profile-btn.disable {
    color: #999;
    cursor: not-allowed;
}

.profile-btn.disable:hover {
    text-decoration: none;
    background-image: none;
}

.profile-btn.disable:focus {
    text-decoration: none;
    color: #999;
}

.profile-btn.disable:active {
    box-shadow: 5px 5px black;
    transform: none;
    text-decoration: none;
}
/* END profile btn */

#navbar {
    height: 55px;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
}

#logo {
    width: 75px;
    align-self: center;
}

@media only screen and (min-width : 768px) {
    #logo {
        width: 100px;
    }
}

.container {
    margin-top: 75px;
}

@media only screen and (min-width : 768px) {
    .container {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
}

section {
    display: flex;
    justify-content: space-between;
    /* display: grid; */
    /* grid-template-columns: auto 200px; */
}

/* @media only screen and (min-width : 1020px) {
    section {
        grid-template-columns: auto 440px;
    }
}

@media only screen and (min-width : 768px) {
    section {
        grid-template-columns: auto 330px;
    }
} */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title > span {
    margin-right: 10px;
}

.section-title::after {
    background: white;
    height: 2px;
    flex: 1;
    content: '';
}

.text {
    font-size: 10px;
    width: 70%;
    /* overflow-wrap: word-wrap; */
}

.img {
    /* grid-area: img; */
    /* width: 55vw;
    height: 35vh; */
    width: 200px;
    height: 200px;
}

@media only screen and (min-width : 768px) {
    .text {
        font-size: 22px;
    }

    .img {
        width: 400px;
        height: 400px;
    }
}

.description {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* margin-left: 10px; */
    margin: 10px 0px 10px 10px;
}

@media only screen and (min-width : 768px) {
    .description {
        width: 70%;
    }
}

.title-img {
    width: 130px;
    height: 45px;
    aspect-ratio: 3.4;
}

@media only screen and (min-width : 768px) {
    .title-img {
        max-width: 289px;
        max-height: 85px;
        width: auto;
        height: auto;
    }
}

@media only screen and (min-width : 1200px) {
    .title-img {
        max-width: 425px;
        max-height: 125px;
        /* max-width: 70%; */
    }
}

#bracket-challenge {
    margin-top: 75px;
}

.play-now {
    width: 40%;
    border-radius: 15px;
    font-size: 10px;
}

/* @media only screen and (min-width : 1020px) {
    .play-now {
        width: 30%;
        font-size: 15px;
    }
} */

@media only screen and (min-width : 768px) {
    .play-now {
        width: 30%;
        font-size: 15px;
        place-self: flex-start;
    }
}

@media only screen and (min-width : 1250px) {
    .play-now {
        font-size: 15px;
        width: 20%;
        place-self: flex-start;
    }
}
