@font-face {
    font-family: GillSans;
    src: url('../fonts/GillSansStd.otf');
}

@font-face {
    font-family: GillSans;
    font-weight: 100;
    src: url('../fonts/GillSansStd-Light.otf');
}

@font-face {
    font-family: GillSans;
    font-weight: bold;
    src: url('../fonts/GillSansStd-Bold.otf');
}

::-webkit-scrollbar {
    display: none;
}

.navbar {
    background-color: white;
    padding-top: 1rem;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                      supported by Chrome, Opera and Firefox */
}

body {
    background-color:#1B1464;
}

.container-fluid {
    background: linear-gradient(170deg, white, white 60%, #1B1464 40%, #1B1464);
}

input:focus {
    outline: none;
}

.copyright {
    text-align: end;
    font-size: 0.7rem;
    color: #FFFFFF;
    font-family: GillSans, sans-serif;
}

@media all and (orientation:portrait) {
    /* Style adjustments for portrait mode goes here */
    .contact-button {
        background-color: #1B1464;
        border-radius: 100rem;
        font-size: 2rem;
        padding-top: 0.3rem;
        padding-bottom: 0rem;
        padding-left: 1.8rem;
        padding-right: 1.8rem;
        color: #FFF;
        font-family: GillSans, sans-serif;
    }
    #pp {
        font-size: 2rem;
        color: #000000;
        font-family: GillSans, sans-serif;
        margin-right: 2rem;
    }
    .title {
        font-size: 15em;
        color: #000000;
        font-family: GillSans, sans-serif;
        margin-right: 2rem;
        animation-name: fadeRight;
        animation-duration: 1s;
        animation-timing-function: ease-in;
    }
    .slogan {
        font-size: 5rem;
        color: #7F87AA;
        font-family: GillSans, sans-serif;
        opacity: 0;
        animation-name: fadeIn;
        animation-delay: 1.1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .desc {
        font-size: 2rem;
        color: #000000;
        font-family: GillSans, sans-serif;
        opacity: 0;
        margin-bottom: 3rem;
        animation-name: fadeIn;
        animation-delay: 1.1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .showcase {
        max-width: 100rem;
        max-height: 60rem;
        width: auto;
        height: auto;
        opacity: 0;
        margin-bottom: 3rem;
        animation-name: fadeIn;
        animation-delay: 0.5s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .download-button {
        margin: 0.5rem;
        max-width: 18rem;
        max-height: 7rem;
        width: auto;
        height: auto;
        opacity: 0;
        animation-name: fadeIn;
        animation-delay: 1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
}

@media all and (orientation:landscape) {
    /* Style adjustments for landscape mode goes here */
    .contact-button {
        background-color:#1B1464;
        border-radius: 100rem;
        font-size: 1rem;
        padding-top: 0.3rem;
        padding-bottom: 0.1rem;
        padding-left: 1.8rem;
        padding-right: 1.8rem;
        color: #FFF;
        font-family: GillSans, sans-serif;
    }
    #pp {
        font-size: 1rem;
        color: #000000;
        font-family: GillSans, sans-serif;
        margin-right: 2rem;
    }
    .title {
        font-size: 8em;
        color: #000000;
        font-family: GillSans, sans-serif;
        margin-right: 2rem;
        animation-name: fadeRight;
        animation-duration: 1s;
        animation-timing-function: ease-in;
    }
    .slogan {
        font-size: 3rem;
        color: #7F87AA;
        font-family: GillSans, sans-serif;
        opacity: 0;
        animation-name: fadeIn;
        animation-delay: 1.1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .desc {
        font-size: 1.2rem;
        color: #000000;
        font-family: GillSans, sans-serif;
        opacity: 0;
        margin-bottom: 3rem;
        animation-name: fadeIn;
        animation-delay: 1.1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .showcase {
        max-width: 21rem;
        max-height: 33rem;
        width: auto;
        height: auto;
        opacity: 0;
        animation-name: fadeIn;
        animation-delay: 0.5s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
    .download-button {
        margin: 0.5rem;
        max-width: 13rem;
        max-height: 7rem;
        width: auto;
        height: auto;
        opacity: 0;
        animation-name: fadeIn;
        animation-delay: 1s;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        margin-right: 300px;
    }
    to {
        opacity: 1;
        margin-right: 0px;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        margin-left: 300px;
    }
    to {
        opacity: 1;
        margin-left: 0px;
    }
}

.row [class*='col-'] {
    transition: all 0.5s ease-in-out;
}

img[alt="www.000webhost.com"] {
    display: none !important;
}