@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap');

.container {
    width: 100vw;
    height: 100vh;
    background-color: #031634;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 60px;
    color: #E8DDCB;
    font-weight: 600;
    text-align: center;
}

h2 {
    font-size: 30px;
    color: #CDB380;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin: 30px 0;
}

.icons {
    margin-top: 45px;
    text-align: center;
}

.icon {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
}
.icon::before, .icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.25s ease;
    border-radius: 30px;
}
.icon i {
    position: relative;
    color: #FFFFFF;
    font-size: 30px;
    margin-top: 15px;
    transition: all 0.25s ease;
}

.icon-expand::after {
    box-shadow: inset 0 0 0 1px #033649;
}
.icon-expand::before {
    background: #036564;
    box-shadow: inset 0 0 0 60px #033649;
}
.icon-expand:hover::before {
    box-shadow: inset 0 0 0 1px #033649;
}

@media only screen and (max-width: 600px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 20px;
        margin: 15px 0;
    }
}