@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');


app-hero .logo-hero-container img{
    background-color: #5000cc;
    border-radius: 100%;
    border: 3px solid rgb(184, 184, 184);
    align-self: flex-end;
    height: 100%;
}
app-hero .logo-hero-container{
    display: flex;
    height: 50vh;
    max-height: 350px;
    width: max-content;
    padding: 30px;
    margin: auto;
}

app-hero aside{
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 30px;
    margin: auto;
    
    max-width: 700px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(80, 0, 204, 0.15);
    color : #1F2937;
}

@media screen and (max-width: 768px){
    app-hero aside{
        width: 85dvw;
        margin: auto;
        padding: 6dvw;
    }
    app-hero .logo-hero-container img{
        border-radius: 100%;
    }
}


.CTA-container{
    display: flex;
    height: max-content;
    margin-top: 20px;
    gap: 15px;
}

.hero-title{
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Orbitron", sans-serif;
    
    color: rgb(0, 133, 216);
    
}


