.container-main {
    background-color: #363636;
    border-color: red;
    border-style: solid;
    margin: 40px;
}

.container-main > h1 {
    text-align: center;
    justify-content: center;
    padding: 5px;
    margin-top: 2px;
}

.container-main > p {
    text-align: center;
    margin: 20px;
}

a {
    transition: transform .2s;
}

a:hover {
    color: red;
    text-decoration: underline;
    text-underline-offset: 12px;
    transform: scale(1.2);
}
