* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100vh;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    width: 100%;
    height: 75px;
}

.branding {
    font-weight: 800;
}

.button {
    width: auto;
    height: auto;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

.button.inverse {
    background-color: white;
    outline: 1px solid black;
    color: black;
}

.content {
    margin-top: 200px;
    display: flex;
    flex-wrap: wrap;
    padding: 45px;
    gap: 75px;
    justify-content: center;
    align-items: center;
}

.content-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    width: 500px;
    text-align: left;
    justify-content: center;
}

.content-left button {
    width: 100%;
}

.title {
    font-size: 3rem;
    font-weight: 800;
}

.contact {
    font-size: 0.85rem;
    text-align: center;
}

.frame {
    border: none;
    border-radius: 12px;
}

@media (max-width: 500px) {
    .title {
        font-size: 2rem;
    }
    .content-left {
        width: 86%;
    }
    .content {
        margin-top: 125px;
        flex-direction: column;
        gap: 50px;
        padding-bottom: 50px;
    }
    .content-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    .frame {
        width: 100%;
    }
}
