/* CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Default css */
a{
    text-decoration: none;
}

/* body */
body {
    min-height: 100vh;
    font-family: 'Satoshi', sans-serif;
}

/* alert Container */
.alert-container {
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0px 10px;
    background: #0066ff;
    color: white;
}

/* Text */
.text {
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Icon */
.icon {
    cursor: pointer;
    vertical-align: middle;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: #0066ff;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 20px;
}

/* Responsive design */
@media (max-width: 480px) {
    .alert-container {
        height: 60px;
    }
    .text {
        font-size: 18px;
    }

    .icon {
        cursor: pointer;
        vertical-align: middle;
        font-size: 30px;
    }
}