@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(1, 1, 51);
    font-family: 'Roboto', sans-serif;
}

.all-box {
    display: flex;
    justify-content: center;
}

.crypto-box {
    background-color: rgb(0, 0, 65);
    width: 325px;
    margin-top: 50px;
    border-radius: 15px;
}

.img-crypto .crypto-img {
    width: 270px;
    height: 270px;
    cursor: pointer;
}

.img-crypto {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.crypto-text h1 {
    font-size: 17px;
    margin-left: 25px;
    margin-top: 25px;
    color: white;
    width: 140px;
}

.crypto-text h1:hover {
    color: cyan;
    cursor: pointer;
    transition: ease all 350ms;
}

.crypto-text p {
    font-size: 15px;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.582);
    width: 240px;
}

.crypto-value {
    display: flex;
    color: cyan;
}

.crypto-value p {
    margin-left: 7px;
    font-size: 15px;
}

.crypto-info {
    display: flex;
    justify-content: space-between;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.582);
    padding-bottom: 15px;
}

.crypto-date {
    display: flex;
    color: rgba(255, 255, 255, 0.582);
}

.crypto-date p {
    margin-left: 7px;
    font-size: 15px;
}

.crypto-creator img {
    width: 32px;
    border: 2px solid white;
    border-radius: 50%;
}

.crypto-creator {
    display: flex;
    margin-bottom: 25px;
    margin-left: 25px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.582);
    font-size: 15px;
}

.crypto-creator p {
    margin-top: 5px;
    margin-left: 7px;
}

.crypto-creator span {
    color: white;
}

.crypto-creator span:hover {
    color: cyan;
    cursor: pointer;
}