#internet-explorer-content {
    display: none;
}

#ie-container {
    display: flex;
    background-color: #1EBBEE;
    padding: 35px 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#ie-container img {
    height: 70px;
    width: auto;
}

#ie-message {
    color: white;
    margin-left: 30px;
}

#ie-message > div:last-child {
    font-size: 26px;
}

#ie-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #1EBBEE;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -20px;
}

#chrome-container {
    padding: 70px 30px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    z-index: 1;
}

#chrome-container img {
    height: 70px;
    width: auto;
}

#chrome-message {
    width: 400px;
    text-align: center;
    margin-bottom: 25px;
}

#btn-chrome, #btn-firefox {
    display: block;
    box-shadow: 0 15px 20px rgba(0, 10, 20, 0.1), 0 2px 8px rgba(0, 10, 20, 0.05);
    padding: 20px 35px;
    border-radius: 4px;
    transition: 0.25s ease;
    text-decoration: none;
    color: rgb(50, 60, 70);
    background-color: white;
    position: relative;
    top: 0;
}

#btn-chrome:hover, #btn-firefox:hover {
    top: -5px;
    box-shadow: 0 20px 25px rgba(0, 10, 20, 0.15), 0 4px 10px rgba(0, 10, 20, 0.08);
}

#btn-firefox {
    margin: 20px auto 0 auto;
    padding: 15px;
    width: 160px;
}

#other-browsers-message {
    padding: 30px;
    text-align: center;
}

#other-browsers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

#other-browsers-container > div {
    padding: 30px 20px;
    text-align: center;
    width: 280px;
    box-sizing: border-box;
}

#other-browsers-container img {
    height: 80px;
    width: auto;
}

.browser-title {
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
}

.browser-message {
    font-size: 14px;
    margin-top: 15px;
}