body {
    background-color: rgb(51, 61, 92);

    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;

    color: white;
}

h1, h2, h3, h4, h5, h6, .text-centered {
    text-align: center;
}

h1 {
    font-size: 96px;
}

.container-center {
    position: absolute; 
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
}

.gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient.title {
    background-image: linear-gradient(90deg, rgb(255, 176, 239) 10%, rgb(152, 209, 255) 90%);

    font-family: 'Sacramento', cursive;
    font-weight: bold;
    padding: 5px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

button {
    display: inline-block;
    border: none;

    color: white;
    border: 2px solid rgb(255, 148, 214, 1);
    
    padding: 8px 16px;
    margin: 4px 2px;

    text-align: center;
    text-decoration: none;
    font-size: 16px;

    transition-duration: 0.3s;

    background-color: transparent;
    cursor: pointer;
}

button:hover {
    background-color: rgb(255, 138, 210, 1);
    font-size: 20px;
    color: black;
}