@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    *{
        font-family: 'Poppins', 'sans-serif';
    }
    body {
        height: 100vh;
        overflow: hidden;
        background: linear-gradient(to bottom right, #76c8e9, #00212b);
    }
    .icon img{
        position: relative;
        width: 100px;
        border-radius: 5px;
        display: flex;
        margin-left: 10px;
        margin-top: 20px
    }
    button {
        padding: 20px;
        border-radius: 10px;
        border: none;
        color: #246f8d;
        background: white;
        size: 150%;
        font-size: 20px;
        cursor: pointer;
        border-left: 2px solid black;
        border-bottom: 4px solid black;        
    }
    button:hover {
        border-left: none;
        border-bottom: none;

    }