* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter";
}

header {
    padding: 30px 0;
    background-color: black;
    position: relative;
}

li {
    color: white;
    list-style-type: none;
    font-size: 2rem;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 30px;
    gap: 2rem;
}

.title span {
    color: white;
    position: absolute;
    left: 30px;
    top: 25px;
    font-size: 2.5rem;
}

main {
    padding: 100px 0;
}

.main-container {
    display: flex;
    justify-content: center;
    gap: 10rem;
}

.left-container {
    display: flex;
    flex-direction: column;
}

.left-container img {
    width: 40vw;
    margin-bottom: 2rem;
}

.text-container {
    width: 40vw;
}

.text-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-container p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

button {
    background-color: #FD5205;
    width: 10rem;
    padding: 1rem 0;
    border: none;
    color: white;
    font-size: 1.5rem;
    border-radius: 7px;
    font-weight: bold;
}

.right-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-container {
    width: 40vw;
}

.image-container img {
    width: 100%;
    margin-bottom: 0.5rem;
}

.image-container span {
    font-size: 2rem;
    font-weight: bold;

}

.next-container {
    padding: 200px 0;
    background-color: #FD5205;
}

.next-container p {
    color: white;
    text-align: center;
    font-size: 2rem;
    width: 35ch;
    margin: 0 auto;
}

.footer-container {
    padding: 30px 10px;
    background-color: black;
}

.footer-container span {
    font-size: 2rem;
    color: white;
}