body {
    max-width: 95%;
    font-family: 'Nunito', sans-serif !important;
    letter-spacing: 0.3rem !important;
    min-height: 100vh !important;
    position: relative !important;
}

.text-darkblue {
    color: #0e2449 !important;
}


.link-btn {
    transform: scale(calc(1/2));
    color: #0e2449;
    text-decoration: none;
    font-size: 2em;
    display: inline-block;
    text-transform: uppercase;
    padding: 0.5em 2em;
    transition: 0.02s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
    border-radius: 5px;
}

.link-btn::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #cecd24;
    transition: 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1), left 0.3s cubic-bezier(0.1, 0, 0.1, 1);
    z-index: -1;
}

.link-btn::after {
    content: "";
    display: inline-block;
    background-image: url("https://cdn-icons-png.flaticon.com/128/109/109617.png");
    position: absolute;
    top: 0;
    left: calc(100% - 3em);
    right: 3em;
    bottom: 0;
    background-size: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    transition: right 0.3s cubic-bezier(0.1, 0, 0.1, 1);
}

.link-btn:hover {
    padding: 0.5em 3.5em 0.5em 0.5em;
}

.link-btn:hover::before {
    left: calc(100% - 3em);
    right: 0;
    transition: 0.3s cubic-bezier(0.1, 0, 0.1, 1), left 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
}

.link-btn:hover::after {
    right: 0;
    transition: right 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
}

.buttons {
    max-width: 110%;
    padding-top: calc(5%);
}