@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

a, a::before, a::after {
    color: white;
    text-decoration: none; 
}

/*NAV*/

nav {
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*NAV*/

header {
    width: 100%;
    height: 410px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header h1 {
    width: 364px;
    text-align: center;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
}

header span {
    color: #4A4DFF;
    text-decoration: underline 6px solid;
}

.CTA {
    display: flex;
    flex-direction: row;
    gap: 10px;

    width: 380px;
    height: 50px;
    
}

.CTA input {
    width: 220px;
    height: 50px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid gray;
    padding: 12px 16px;
}

.CTA input:focus {
    border: 1px solid black;
}

.CTA button {
    background-color: black;
    color: white;

    font-weight: bold;
    width: 150px;
    height: 50px;
    border-radius: 10px;
}

.CTA button:hover {
    cursor: pointer;
}

/*ARTICLE*/

article {
    background-color: #121212;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    width: 100%;
    height: 320px;
    
}

article div { 
    display: flex;
    flex-direction: row;
    gap: 24px;
}

article div h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

article p {
    font-size: 14px;
    font-weight: 300;
}

/*FOOTER*/
footer {
    width: 100%;
    height: 160px;

    background-color: black;

    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 20px;
    align-items: center;
    gap: 50px;
}

footer div {
    color: white;

    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}


footer div p:first-child {
    font-weight: 600;
}

footer div p {
    font-weight: 400;
    font-size: 12px;
}


/*COPY*/

.copy {
    width: 100%;
    height: 30px;

    align-items: center;
    text-align: center;
    background-color: black;
}

.copy p {
    color: rgb(219, 219, 219);
    font-size: 12px;
    font-weight: 300;
}