@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    background-image: linear-gradient(to bottom, rgba(2, 6, 23, 1), rgba(2, 6, 23, 0.9)), url('garage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    min-height: 100vh;
    padding: 1px;
    user-select: none;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #f3f4f6;
    letter-spacing: 12px;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.logo .second {
    display: block;
}

.orange {
    font-size: 56px;
    color: #f97316;
}

p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #f3f4f6;
    font-weight: 400;
    margin-bottom: 1rem;
}

.content {
    width: 900px;
    margin: auto;
    padding: 1rem;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.underline {
    border-bottom: 3px solid #f97316
}

@media screen and (max-width: 900px) {
    .content {
        width: 600px;
        padding: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .content {
        width: 100%;
    }
}