#caption{
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: white;
}

.image1{
    position: relative;
}

#launches{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    margin: 25px 0;
}
.launch-card{
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    margin: 25px 50px;
    position: relative;
    align-items: center;
    height: 250px;
    border-radius: 25px;
    width: calc(100% - 100px);
    background-color: var(--background2);
}

.launch-info{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: calc(50% - 100px);
}
.launch-image-container{
    width: 10%;
    min-width: 200px;
    height: 100%;
}
.launch-image{
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px 0 0 25px;
}
.launch-name{
    margin: auto auto 15px 15px;
}
.launch-provider{
    margin: 15px auto 15px 15px;
}
.launch-location{
    margin: 15px auto 15px 15px;
}
.launch-status{
    margin: 15px auto auto 15px;
}
.launch-timer{
    width: calc(50% - 100px);
    font-family: 'Inconsolata', monospace;
    font-size: min(calc(12px + 1.5vw), 26px);
    text-align: right;
    margin-right: 25px;
}

.go-for-launch{
    color: var(--accent1);
}
.to-be-determined{
    color: yellow;
}

@media only screen and (max-width: 760px) {
    .launch-info{
        font-size: 14px;
    }
    .launch-timer{
        font-size: 16px;
    }
}