@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@300&display=swap');
body {
    background-color: black;
    color: white;
    font-family: 'Roboto';
    background-image: url("/11437.gif");
    background-size: initial;
}

main {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 6rem;
}

.logo {
    width: 25rem;
    height: 25rem;
}

.flex-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.etherscan {
    width: 5rem;
}

.dextools {
    width: 7rem;
}

@media screen and (max-width:60rem) {
    .logo {
        width: 10rem;
        height: 10rem;
    }

    .flex-col {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .etherscan {
        width: 3rem;
    }
    
    .dextools {
        width: 3rem;
    }
}