
/*
    Author:     Ciro Gallo 
    Youtube:    https://www.youtube.com/channel/UCYouDmkieWuAV_jRVf_TjBQ
    Instagram:  https://www.instagram.com/ciro.gal/
    Facebook:   https://www.facebook.com/CiroGalloEDU/
    Linkedin:   https://www.linkedin.com/in/ciro-gallo-bb628a1ab/
    GitHub:     https://github.com/Ciro-Gallo
*/

html {
    scroll-behavior: smooth;
}

body {
    background-color: #272727;
    font-family: 'Titillium Web';
    font-size: 20px;
    /* background-image: url('img/background.jpg'); */
    /* background-image: linear-gradient(to right, #30a3d0 0%, #330867 100%); */
}

iframe {
	width: 100%;
	height: 100%;
}

.header {
    background-color: #0f6885;
    width: 100%;
    top: 0;
    transition: top 0.4s;
    padding: 2rem;
}

.avatar {
    margin-left: 20px;
    margin-top: 15px;
}

.social {
    padding: 2px;
    margin-top: 20px;
}

.social-mobile {
    display: none;
}

.page-title {
    color: whitesmoke;
    font-family: 'Poppins', sans-serif, 'arial';
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.subtitle{
    font-family: 'Allura';
    font-size: 12px;
}

.go-down-button {
    position: fixed;
    bottom: 30px;
    right: 0px;
    margin-right: 30px;

    background-color: DodgerBlue; 
    border: none; 
    color: white; 
    padding: 12px 16px; 
    font-size: 16px; 
    cursor: pointer; 
}

.go-down-button:hover {
    background-color: RoyalBlue;
}

.description {
    font-size: 25px;
    display: flexbox;
    
}

.title {
    padding-bottom: 50px;
    color: whitesmoke;
    font-family: 'Poppins', sans-serif, 'arial';
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
}

.custom-card {
    padding: 50px;
    background-color: rgba(72,67,73);
    border-radius: 40px;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    transition: 0.4s;
}

.card-description {
    color: whitesmoke;
}

.top-offset{
    margin-top: 5%;
}

/*  Footer  */


footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    background: #dddee1;
    height: 150px;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 200px;
    padding-bottom: 5px;
    position: absolute;
    width: 100%;
}

.social-container-footer {
    margin: auto;
    display: flex;
    width: 30%;
    height: 100px;
  
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    width: 100%;
}

.icon-footer {
  cursor: pointer;
  margin: 5px;
}

.social-container-footer a {
  color: inherit;
}

small {
    opacity: .5;
    font-weight: 300;
}
  
small a{
    color: inherit;
}



@media (hover: hover) {
    /* Device that can hover (desktops) */
    .custom-card:hover {
        transform: scale(1.1, 1.1);
        box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
          -5px -5px 30px 15px rgba(0,0,0,0.22);
    }
}

.custom-button {
    margin: 50px;
}


.operand {
    max-width: 100px;
    font-size: 35px;
    background-color: rgb(250, 250, 250);
}

.operand-error {
    font-size: 35px; 
    font-family: monospace; 
    height: 50px;
    width: 100px;
    border-color: red;
    border-style: outset;
    box-shadow: 5px 5px 20px 7px rgba(253, 3, 3, 0.25), -5px -5px 30px 7px rgba(255, 0, 0, 0.22);
}

.output {
    font-size: 25px; 
    font-family: monospace;
    background-color: rgb(240, 240, 240);
    min-height: 200px;
    max-height: 200px;
    max-width: 446px;
    overflow: scroll;
    display: block;
    padding: 0px;
    margin: 0px;
}

.label-text {
    color: white;
    font-size: 35px;
}

.red-border {
    border-color: red;
    box-shadow: 5px 5px 20px 7px rgba(253, 3, 3, 0.25), -5px -5px 30px 7px rgba(255, 0, 0, 0.22);
}

.standalone-info {
    position: absolute;
    margin-top: 3rem;
    left: 0; 
}

.standalone-info a {
    margin-left: 40px;
    color:gainsboro;
    font-family: 'Amaranth';
    font-weight: bold;
}


.standalone-info.slide-in-left {
	-webkit-animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-8-27 16:22:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  

@media only screen and (max-device-width: 800px) {
    body {
        background: #30a3d0;
    }

    .page-title {
        color: white;
        font-size: 40px;
        font-family: 'Amaranth';
    }

    .output {
        font-size: 15px; 
        font-family: monospace;
        background-color: rgb(240, 240, 240);
        min-height: 200px;
        max-height: 200px;;
        overflow: scroll;
        padding: 0px;
        margin: 0px;
    }

    .operand {
        max-width: 50px;
        font-size: 15px;
        background-color: rgb(250, 250, 250);
    }

    .label-text {
        color: white;
        font-size: 15px;
    }

    .custom-card {
        padding: 30px;
        background-color: rgba(72,67,73);
        border-radius: 40px;
        box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
        transition: 0.4s;
        margin-top: 100px;
    }

    .go-down-button {
        display: none;
    }

    .page-title {
        color: white;
        font-size: 20px;
    }

    .avatar {
        margin-left: 0px;
        display: none;
    }
    
    .social {
        margin: 0px;
        transform: scale(0.5);
        padding: 0px;
    }

    .social-mobile {
        margin: 0px;
        transform: scale(0.5);
        padding: 0px;
        display: inline;
    }

    .custom-card:hover {
        box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
          -5px -5px 30px 15px rgba(0,0,0,0.22);
    }

    .vertical-center {
        min-height: 100%;
        min-height: 100vh;
    
        display: flex;
        align-items: center;
    }

    .social-container-footer {
        margin: auto;
        display: flex;
        width: 50%;
        height: 100px;
      
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    footer {
        background: #b9b9b9b6;
        height: 150px;
        text-align: center;
        margin-bottom: 0px;
        margin-top: 160px;
        overflow: hidden;
        position: absolute;
        width: 100%;
    }

    .standalone-info {
        position: absolute;
        margin-top: 50px;
        left: 0; 
    }

    .standalone-info a {
        margin-left: 20px;
        color:gainsboro;
        font-family: 'Amaranth';
        font-weight: bold;
        font-size: 10px;
    }
}

