.section1 {
    width: 100%;
    height: 100vh;
    padding: 0 50px;
    position: relative;
    background: url("./assets/images/crypto.gif") center center/cover
}

.section2 {
    width: 100%;
    min-height: 100vh;
    background-color: #131315;
    padding: 20px 50px;
    align-content: center;
}

.option-btn {
    margin: 10px 0;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    border-radius: 12px;
    background: #3874ff;
}

.hero-container-btn,
button {
    background-color: #3874ff;
    color: #fff
}

.box-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly
}

.hero-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
    width: 100%;
    margin-bottom: 25px
}

.hero-text-container {
    width: 70%;
    margin-bottom: 50px
}

.hero-container-h1 {
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 20px
}

.hero-container-p {
    color: #fff;
    font-size: 22px;
    margin-top: 3px
}

.hero-container-btn {
    border-radius: 200px;
    width: 200px;
    border: none;
    outline: 0;
    padding: 15px;
    font-weight: 700
}

.label,
.value {
    color: #aaa
}

.box-container {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    background-color: #17181c;
    padding: 0 12px;
    width: 100%;
    margin: 10px;
}

.crypto-box {
    background-color: #17181c;
    border: 1px solid #3874ff3b;
    border-radius: 20px;
    padding: 0 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    animation: 2s ease-in-out fadeIn;
    width: 100%;
    margin: 10px;
    text-align: center;
}

.slide-in-left,
.slide-in-right {
    position: relative;
    animation: 1s forwards slideIn;
    width: 100%
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slide-in-right {
    right: -1000%
}

.slide-in-left {
    left: -100%
}

@keyframes slideIn {
    to {
        right: 0;
        left: 0
    }
}

h2 {
    color: #eee;
    margin-bottom: 10px;
    font-family: "IBM Plex Sans", sans-serif
}

.crypto-info {
    display: inline-block;
    justify-content: space-between;
    margin-bottom: 15px;
    text-align: center;
}

.value {
    font-weight: 700
}

button {
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s ease-in-out
}

button:hover {
    background-color: #2b1ee4;
    color: #fff
}

.fa-icon {
    margin-right: 5px
}

footer {
    background-color: #34495e;
    color: #bdc3c7;
    padding: 20px;
    text-align: center
}

.footer-links {
    margin-top: 10px
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 15px
}

@media screen and (max-width:768px) {
    .box-container {
        flex-direction: column
    }

    .crypto-box {
        margin-bottom: 20px;
        min-width: 300px;

    }

    .hero-container-h1 {
        font-size: 30px;
        width: 100%
    }

    .hero-text-container {
        width: 100%
    }
}