*{
    box-sizing: border-box;
}
body {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #f4f4f4;
  }

li{
    list-style: none;
}

.notice-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 0;
    width: 100%;
    max-width: 600px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}
.notice-container ul{
    display: flex;
    padding: 0;

}
.notice-container li a{
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    color: black;
}
.notice-container li a img{
    width: 100px;
}
.notice-container h1{
    text-transform: none;
    font-family: unset;
    letter-spacing: 0;
}
@media screen and (max-width: 600px) {
    .notice-container{
        max-width: none;
    }
    .notice-container li a img{
        width: 75px;
    }
}