body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

.background-image {
    /* background-image: url('library_background.jpeg'); */
    /* background-image: url('library_background_yellow_girl.jpeg'); */
    background-image: url('library_guy.png');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: white;
}



.content h1 {
    font-size: 5vw;
    margin-bottom: 0;
    margin-right: 1rem;
    text-align: right;
}

.content h2 {
    font-size: 4vw; 
}

.content p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

button {
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}


.header {
    position: absolute;
    top: 45vh;
    display: flex;
    flex-direction: column;
    /* align-items: end; */
    /* justify-content: space-between; */
    gap: 10px;
    height: 100%;
    right: 0;
}

.content h3 {
    font-size: 1.35rem;
    margin-right: 1rem;
    margin-top: 0;
    text-align: right;
}

.logo {
    height: 20vw; /* Adjust based on your logo */
}

.primarybg {
    background-color: #0277BD;
    color: white;
    font-weight: bold;
    font-size: 1.15rem;
}

.primarybg:hover {
    background-color: #691b99;
    color: white;
}

.secondarybg {
    background-color: #691b99;
    color: white;
}

.store-badges {
    margin-bottom: 1em;
}

.store-badges a img {
    margin: 0 10px;
}

.store-badges a img.google {
    height: 69px;
}

.store-badges a img.apple {
    height: 50px;
    padding-bottom: 10px;
}

.store-badges div {
    cursor: pointer;
}

.store-badges img.web {
    height: 50px;
    margin-left: 1rem;
    padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .background-image {
        background-image: url('library_guy_vertical.png');
    }

    .header {
        top: 1vh;
        color: black;
        align-items: center;
    }

    .content h1 {
        text-align: center;
        font-size: 2rem;
    }
    .content h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .store-badges {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .store-badges a img {
        margin: 0 10px;
    }
    
    .store-badges a img.google {
        height: 50px;
    }
    
    .store-badges a.apple {
        margin-left: -1.5rem;
        padding-bottom: 6px;
    }

    .store-badges a img.apple {
        height: 35px;
        padding-bottom: 7px;
    }
    
    .store-badges a.web  {
        margin-left: -1rem;
        padding-bottom: 6px;
    }

    .store-badges a img.web {
        height: 35px;
    }
  }
