* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    color: #ffffff;
}

body {
    width: 100vw;
    height: 100vh;
    background-image: url('./assests/background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    background: transparent;
    width: 100vw;
    height: 75px;
    display: flex;
    justify-content: flex-end;
    gap: 75px;
    align-items: center;
    padding: 30px 75px;
    -webkit-box-shadow: 5px 7px 15px 7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 5px 7px 15px 7px rgba(0, 0, 0, 1);
    box-shadow: 5px 3px 15px 3px rgba(0, 0, 0, 1);
}

a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

a::after {
    content: '';
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #ffffff;
}

a:hover::after {
    width: 100%;
    transition: 0.3s;
}

main {
    width: 50%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 65px;
    gap: 100px;
}

.container-up {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10%;
}

h1 {
    font-size: 100px;
    font-weight: 300;
    line-height: 150px;
}

.p-up {
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
}

.p-down {
    font-size: 18px;
    font-weight: 300;
    line-height: 21px;
    margin-top: 15%;
}

.container-down {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

input {
    width: 350px;
    height: 55px;
    background-color: rgba(89, 2, 9, 0.5);
    border-radius: 25px;
    border: none;
    padding-left: 15px;
    outline: none;
    font-size: 14px;
}

button {
    width: 100px;
    border-radius: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgba(89, 2, 9, 0.5);
    font-size: 14px;
}

button:hover {
    background-color: rgba(2, 2, 97, 0.5);
}

@media screen and (max-width:1600px) {

    h1 {
        font-size: 50px;
        line-height: 90px;
    }

    .p-up {
        font-size: 18px;
    }

    .container-up {
        gap: 10px;
        margin-top: 0px;
    }

    .container-down {
        gap: 10px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:1030px) {

    body {
        background-image: url('./assests/bg-resp-tablet.png');
    }

    header {
        justify-content: center;
        height: 100px;
        -webkit-box-shadow: 5px 7px 15px 7px rgba(89, 2, 9, 1);
        -moz-box-shadow: 5px 7px 15px 7px rgba(89, 2, 9, 1);
        box-shadow: 5px 3px 15px 3px rgba(89, 2, 9, 1);
    }

    a {
        font-size: 24px;
    }

    .container-up {
        gap: 20px;
        margin-top: 10%;
    }

    main {
        width: 100%;
        height: 90vh;
        align-items: center;
        padding: 0px 65px;
        gap: 10px;
        text-align: center;
        margin-top: -5%;
    }

    h1 {
        font-size: 80px;
    }

    .p-down {
        margin-top: 85%;
    }

    .container-down {
        justify-content: center;
        margin-bottom: 50px;
    }

    input {
        background-color: rgba(89, 2, 9, 0.75);
    }

    button {
        background-color: rgba(89, 2, 9, 0.75);
    }

    button:hover {
        background-color: rgba(2, 2, 97, 0.5);
    }
}

@media screen and (max-width:500px) {

    body {
        background-image: url('./assests/bg-resp-mobile.png');
        height: 100vh;
    }

    header {
        display: none;
    }

    main {
        padding: 10px 65px;
        margin-top: 10px;
    }

    h1 {
        font-size: 70px;
        line-height: 75px;
    }

    .p-up {
        font-size: 20px;
        width: 375px;
        margin: 0 auto;
    }

    .p-down {
        margin-top: 250px;
    }

    .container-down {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    input {
        text-align: center;
        padding: 0;
    }

    button {
        height: 55px;
        background-color: rgba(89, 2, 9, 0.75);
    }
}