body {
    font-family: "Libre Franklin", sans-serif;
}

header {
    padding: 50px 0;
    min-height: 100px;
}

main {
    min-height: calc(100vh - 360px);

}

.logo {
    width: 100px;
    transform: rotate(-90deg);
}

[class*="container-"] {
    margin: 0 auto
}

.container-40, .container-50  {
    /* padding:0 20px; */
    width: 90%;
}

@media (min-width: 1024px) {
    .container-40 {
        width: 40%;
        max-width: 700px;
    }
    
    .container-50 {
        width: 50%;
        max-width: 800px;
    }
}

.hide{
    display: none;
}
.page-title {
    margin-bottom: 30px;
}

form {}
textarea{
    box-sizing: border-box;
}
input, textarea {
    background-color: #efefef;
    border: none;
    box-shadow: none;
    padding: 12px;
    margin: 10px 0 20px;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}
a{
    text-decoration: none;
    color: currentColor;
}
.underline-link {
    font-size: 16px;
    margin-bottom: 12px;
    border: none;
    background: transparent;
    text-transform: uppercase;
    padding: 0;
    position: relative;
    font-weight: 700;
}

.underline-link span {
    position: relative;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    transition: background-size .3s;
}

.underline-link > span:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    display: block;
    background-color: #fcd000;
    border-bottom: none;
    width: 100%;
    height: 0;
    margin-top: -11px;
    z-index: -1;
    -webkit-animation: shrink-cta .5s forwards;
    animation: shrink-cta .5s forwards;
}

.underline-link:hover > span:after {
    animation: grow-cta .5s forwards;
}

@keyframes grow-cta {
    0% {
        height: 0;
    }

    100% {
        height: calc(100% - 5px);
    }
}

@keyframes shrink-cta {
    0% {
        height: calc(100% - 5px);
    }

    100% {
        height: 0;
    }
}






/* View Secret */
.secret-container {
    position: relative;
}
.url{
    position: relative;
}
.copy-input{
    width: calc(100% - 10px);
    margin: 0;
}
.copy-input:focus {
    outline: none;
}

.copy-btn {
    position: absolute;
    right: -2px; top: 50%;
    transform: translateY(-50%);
    width: 40px;
    border: 0;
    font-size: 20px;
    padding: 6px 9px;    
    transition: all .4s;
}
.copy-btn i{
    opacity: .6;
}

.copy-btn:hover {
    transform: scale(1.2) translateY(-40%);
    cursor: pointer;
}
.copy-btn:hover i {
    opacity: 1;
}
.copy-btn:focus {
    outline: none;
}

.copied {
    width: 75px;
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    color: #000;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #222;
    border-radius: 5px;
    box-shadow: 0 3px 12px #b8c6db;
    -moz-box-shadow: 0 3px 12px #b8c6db;
    -webkit-box-shadow: 0 3px 12px #b8c6db;
}


.message{
    font-weight: bold;
    font-style: italic;
    padding:10px 0;
    margin-bottom: 10px;
}


footer {
    background: #000;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

footer #lettermark {
    width: 40px;
    height: 40px;
}
