*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: 'Exo', sans-serif;
}

main {
    display: flex;
    min-height: 100vh;
}

.content {
    width: 50%;
    padding: 50px;
}
.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 150px;
    margin-bottom: 75px;
    flex-wrap: wrap;
}
.upvest-logo {
    width: 110px;
}
.nuvia-logo {
    width: 175px;
}
.text {
    text-align: center;

    p {
        font-size: 34px;
        font-weight: 300;
    }
}
.button {
    display: inline-block;
    background-color: #F9D508;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    padding: 12px 26px;
}

.button:hover {
    background-color: #000;
    color: #F9D508;
}

.image {
    width: 50%;
    background-image: url('basecamp.jpeg');
    background-position: 100% 50%;
    background-size: cover;
    background-repeat: repeat;
}

@media screen and (max-width: 1050px) {
    main {
        flex-direction: column;
    }
    .content,
    .image {
        width: 100%;
    }
    .image {
        height: 50vh;
    }
    
    .nuvia-logo {
        height: 80px;
    }
}
