* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: rgb(45, 45, 45);
}
.nav {
    display: block;
    padding: 10px 0px 40px 0px;
    border: none !important;
}
.userY {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid whitesmoke;
    width: 99.9999999%;
    height: 100px;
    justify-content: end !important;
    align-items: end;
    padding: 5px 15px;
}
.userY > * {
    max-width: 180px;
    text-align: center;
    padding: 5px 25px;
    width: 100%;
    border: 1px solid whitesmoke;
    border-radius: 5px;
    cursor: not-allowed;
}
.user-s {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: auto;
}
.user-s > :first-child > img {
    max-width: 250px;
    width: auto;
    padding: 5px 0px;
}
.playnow {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
    padding: 5px 25px;
    border-radius: 3.4px;
}
.playnow > * {
    font-size: 30px;
}
.user-interact {
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-interact > *  {
    border: 1px solid whitesmoke;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px
}
.contentNAV {
    display: flex;
    flex-direction: row;
}
.contentNAV > a {
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
}
.contentNAV > a:hover {
    transition: all 150ms;
    background-color: rgb(70,70,70);
    border-radius: 5px !important;
}
.cpright {
    border-top: 1px solid white;
    padding: 5px 30px;
    height: 50px !important;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media screen  and (max-width: 350px) {   
    .user-s > :first-child > img {
        max-width: 200px;
        padding: 0px 5px 0px 0px !important; 
    }
}
@media screen and (max-width: 850px) {
    .user-s {
        width: 90%;
    }
    .user-s > :first-child > img {
        max-width: 230px;
        padding: 0px 10px 0px 0px !important; 
    }
    .playnow > p {
        font-size: 18px;
    }
    .contentNAV {
        flex-direction: column !important;
    }
    .contentNAV > a {
        padding: 5px 30px !important;
    }
}
input[type="submit"] {
    cursor: pointer;
}