body{
    background-color: #181717;
    margin: 0px;
}

header{
    display: flex;
    position: sticky;
    background-color: #e22246;
    top: 0px;
    height: 96px;
    align-items:center;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}

.item{
    flex:0 0 175px;
}

main{
    padding-top: 30px;
    display:flex;
    flex-direction: row;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.logo{
    display: inline-block;
    width: 120px;
    padding-top: 45px;
}

.menu{
    display: block;
    float: right;
    width: 48px;
}

.card{
    background-color: white;
    border-radius: 10px;
    width: 320px;
    padding: 10px;
    margin:0 auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.stick{
    display:block;
    margin:0 auto;
    width: 300px;
}

.board{
    display:block;
    margin:0 auto;
    width: 300px;
}

.bnb{
    display:block;
    margin:0 auto;
    width: 300px;
}

h1{
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24;
    color: #41413b;
    margin: 0;
}

p{
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5B5B66;
    padding-left: 20px;
    padding-right: 20px;
}

button{
    font-family: "roboto-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5B5B66;
    border-radius: 5px;
    border-style: hidden;
    width: 120px;
}

@media (1000px >= width){
        main{
            padding-top: 30px;
            display:grid;
            gap:30px;
    }
}