/* 
// Main style sheet
// (c) 2024 Switchback Therapeutics 
*/

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}
a {
  color: #3D9ED7; 
  text-decoration: none; 
}
a:hover {
  text-decoration: underline; 
}
.hero-section {
    background-color: #d2eef5; /* Light blue background */
    height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 550px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("images/sbt-logo-color-1000px.png");
}
@media (max-width: 550px) {  /* For mobile, 768px is typical. Matching background image size instead for smooth scaling. */
    .hero-section {
        background-size: 85%;
    }
}
.hero-title {
    color: white;
    padding: 0;
    text-align: center;
    font-size: 2.5rem;
}
.content-section {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}
.content-section p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}
.contact-link {
    color: #001f3f;
    text-decoration: none;
    font-weight: bold;
}
.contact-link:hover {
    text-decoration: underline;
}