body {
    background-color: black;
    width: 100vw;
    height: 100vh;
}

main {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://assets.hybt.ca/img/byr.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text {
    color: white;
    width: 50vw;
    font-family: 'Inter', sans-serif;
}

.text h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.text p {
    font-size: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

@media (max-width: 1630px) {
    .text {
        width: 70vw;
    }
}

@media (max-width: 1160px) {
    .text {
        width: 90vw;
    }
}