.background {
	height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: linear-gradient(rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url(../imgs/carlhomepage.jpg);
}

.text {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    height: 600px;
}

.text > h1 {
    font-family: TIME NEW ROMAN;
    font-size: 55px;
    color: white;
}

.b1 {
    margin-right: 10px;
    background-color: white;
    color: black;
    transition: all ease-in-out 0.5s;
}

.b1:hover{
    color: white;
    background: transparent;
}

.b2 {
    background-color: white;
    color: black;
    transition: all ease-in-out 0.5s;
}

.b2:hover {
    color: white;
    background: transparent;
}

.title {
    text-decoration: underline solid white;
}