@font-face {
    font-family: "anglicantext";
    src: url("../fonts/AnglicanText.ttf") format("truetype");
}

@font-face {
    font-family: "greatvibes-regular";
    src: url("../fonts/GreatVibes-Regular.ttf") format("truetype");
}


body{
    background-color: #B9B3B2;
}

.bg-navbar {
    background-image: url("../imgs/jesus-on-cross-new.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-height: 80vw;
    object-fit: fill;
    padding-top: 10px;
}

.no-bg-navbar {
    padding-top: 10px;
}

#virtual-libras {
    margin-top: 100px;
}

#radio {
    position: fixed;
    top: 450px;
    right: 1px;
    z-index: 4;
    background-color: black;
    opacity: 0.5;
    padding: 10px;
    width: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.radio {
    display: none;
}

#radio:hover {
    width: 355px;
    transition-duration: 0.5s;
}

#radio:hover .radio {
    margin-left: 10px;
    display: block;
}


#social-media {
    position: fixed;
    top: 265px;
    right: 1px;
    z-index: 4;
    background-color: black;
    opacity: 0.5;
    padding: 10px;
    width: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bg-system {
    background: rgb(188, 151, 103);
    background: linear-gradient(90deg, rgb(188, 151, 103) 0%, rgb(194, 157, 110) 48%, rgb(168, 129, 79) 100%);
}

.system-navbar {
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 10px;
    background: rgb(231, 226, 226);
    background: linear-gradient(90deg, rgb(219, 209, 195) 0%, rgb(194, 157, 110) 48%, rgb(168, 129, 79) 100%);
    max-height: 650px;
    box-shadow: 5px 5px 5px black;
    z-index: 6;
}

.carousel-inner>.carousel-item>img,
.carousel-inner>.carousel-item>a>img {
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border: 2px white solid;
    padding: 10px;
    border-radius: 5px;
    min-width: 25px;
    min-height: 25px;
    color: #B99A72;
    background-color: #B99A72;
}

.break-line {
    display: none;
}

.neon {
    width: 75vw;
    font-size: 1.2rem;
    animation-name: glow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@media (max-width: 820px) {
    #virtual-libras {
        margin-top: 300px;
    }

    #radio {
        position: fixed;
        top: 435px;
        right: 1px;
        z-index: 4;
        background-color: black;
        opacity: 0.5;
        padding: 10px;
        width: 50px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}

@media(min-width: 976px) {

    #virtual-libras {
        margin-top: 140px;
    }

    #radio {
        position: fixed;
        top: 460px;
        right: 1px;
        z-index: 4;
        background-color: black;
        opacity: 0.5;
        padding: 10px;
        width: 50px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .bg-navbar {
        background-image: url("../imgs/jesus-on-cross-new.jpg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 40vw;
        object-fit: fill;
        padding-top: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        border: 2px white solid;
        padding: 10px;
        border-radius: 5px;
        min-width: 50px;
        min-height: 50px;
        color: #B99A72;
        background-color: #B99A72;
    }

    .break-line {
        display: block;
    }

    .carousel-inner>.carousel-item>img,
    .carousel-inner>.carousel-item>a>img {
        width: 100vw;
        height: 60vh;
        border-radius: 10px;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        border: 2px white solid;
        padding: 10px;
        border-radius: 5px;
    }

    .system-navbar {
        margin-right: 10px;
        margin-left: 10px;
        border-radius: 10px;
        background: rgb(231, 226, 226);
        background: linear-gradient(90deg, rgb(231, 226, 226) 0%, rgb(194, 157, 110) 48%, rgb(168, 129, 79) 100%);
        max-height: 650px;
        box-shadow: 5px 5px 5px black;
        z-index: 6;
    }

    .neon {
        width: 75vw;
        font-size: 2.5rem;
        color: white;
        animation-name: glow;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }
}

@keyframes glow {
    from {
        text-shadow: 0px 0px 5px #FC0, 0px 0px 5px #614ad3;
    }

    to {
        text-shadow: 0px 0px 20px #FC0, 0px 0px 20px #614ad3;
    }
}