body{
    margin: 0px;
}
.reload-button{
    position: absolute;
    top: 150%;
    left: -15px;
    color: white;
    border: 0px;
    font-size: 24px;
    background-color: #007EB6;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.8;
}
.reload-button:hover{
    opacity: 1;
}
#scm-landing{
    display: none;
    /* display: flex; */
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}
#scm-landing .home-logo{
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/new_assets/home_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#scm-landing .home-logo > div{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
    justify-content: center;


}
.home-text{
    font-family: sans-serif;
    font-size: 1.5em;
    font-weight: 900;
    color: white;
}
#scm-landing .home-navigate{
    font-family: sans-serif;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    position: relative;
}
.divider-bar{
    position: absolute;
    top: 50px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, white 25%, #007EB6 50%, white 75% );

}
.subdomains{
    display: flex;
    column-gap: 75px;
    flex-direction: column;
    row-gap:20px;
    margin-top: 45px;
}

.subdomains img{
    background-color: #007EB6;

}
.subdomain-card{
    display: flex;
    align-items: center;
    column-gap: 15px;
    cursor: pointer;
}
.subdomain-title{
    font-size: 30px;
    font-weight: 700;
    color: #333;
}
.subdomain-logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 40px;
    background-color: #007EB6;
    border-radius: 50px;

}

@media only screen and (min-width : 768px) {
    .subdomains{
        flex-direction: row;
        margin-top: 0;
    }
    .home-text{
        font-size: 60px;
    }
}