#main-content-n {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.main-content-n-1 {
    text-align: center;
}

.text-1 {
    font-weight: bold;
    font-size: 50px;
}

.text-02 {
    font-weight: bold;
    background-color: rgb(83, 105, 138);
    font-size: 35px;
}

.link-02 {
    text-decoration: none;
    color: white;
    font-size: 40px;
    animation-name: blink-02;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes blink-02 {
    0% {opacity: 1;}
    50% {opacity: 0.2;}
    100% {opacity: 1;}
}