@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Fuzzy+Bubbles:wght@700&family=Open+Sans:wght@300;400&family=PT+Sans&family=Permanent+Marker&family=Roboto:wght@300;400&display=swap');
body{
    font-family: 'Roboto', sans-serif;
}
:root{
    --primary : #2194D2;
}
.text-primary{
    color: var(--primary);
}
#login{
    border:1px solid #020403;
    background: rgb(40, 40, 40); /* Fallback for older browsers without RGBA-support */
	background: rgba(40, 40, 40, 0.5);
    padding:40px 20px;
    border-radius: 5px;
}
#login label{ color:#FFF;}
.btn-primary{
    background-color: #2572A3;
    border:1px solid #2572A3;
    color:#FFF;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */  
    body{
        background-image: url('../img/bg-2025.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    } 
    #top-left{
        width: 150px;
        position: absolute;
        left:20px;
        top:30px;
    }
    #top-right{
        width: 70px;
        position: absolute;
        right:20px;
        top:30px;
    }
    #content{
        margin-top: 80px;
    }
}
@media only screen and (min-width: 768px) {
    /* For desktop */
    body{
        background-image: url('../img/bg-2025.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    }
    #content{
        margin-top: 80px;
    }
    #top-left{
        width: 200px;
        position: absolute;
        left:40px;
        top:30px;
    }
    #top-right{
        width: 100px;
        position: absolute;
        right:40px;
        top:30px;
    }
}