@font-face {
    font-family: "Montserrat";
    src: url('../assets/font.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

html, body, .think-container {
    height: 100%;
}

body {
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: linear-gradient(to left bottom, #4d4d4d 50%, #222222 50.1%);
}

.think-container {
    color: #FFFFFF;
    padding: 0;
    margin: 0px 10% 0px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-flex-direction: column;
    text-align: center;
}

.frase {
    font-size: 25px;
    font-style: italic;
    transition: 0.3s;
}

.autor {
    font-size: 20px;
    transition: 0.3s;
}

.frase, .autor, .autor-web, .reload-message {
    font-family: "Montserrat";
}

.image-link {
    width: 100px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: 1s ease;
}

.image-link:hover {
    rotate: 360deg;
}

.autor-web {
    position: absolute;
    color: #FFFFFF;
    bottom: 0;
    right: 10px;
    cursor: pointer;
}

.reload-message {
    position: absolute;
    color: #FFFFFF;
    bottom: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 20px;
    display: none;
}

::-moz-selection {
    color: #FFFFFF;
    background-color: #000000;
}
  
::selection {
    color: #FFFFFF;
    background-color: #000000;
}

img {
    -webkit-tap-highlight-color: transparent;
}



.icon-social-media {
    width: 90px;
    height: 90px;
    margin: 0px 50px 0px 50px;
    -webkit-tap-highlight-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    filter: drop-shadow(0 0 10px #000);
    transition: .25s;
}

.icon-social-media:hover {
    transform: translateY(-10px);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 600px) {
    .icon-social-media {
        width: 70px;
        height: 70px;
        margin: 0px 12px;
    }
}

