@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

.container {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(77, 0, 17, 0.39), rgba(49, 0, 77, 0.404)), url(image/background.png);
    background-size: cover;
    /* background-image: url(image/background.png); */
    background-position: center;
    padding: 10px 8%;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {
    width: 90px;
    cursor: pointer;
    border-radius: 50%;
    animation-delay: 1.5s;
    transition: 1s;

}

.logo:hover {
    border-radius: 23px;
}

nav ul {
    list-style: none;
    width: 100%;
    text-align: right;
    padding-right: 50px;

}

nav ul li {
    display: inline-block;
    margin: 10px 15px;

}

nav ul li a {
    font-weight: bold;
    color: aliceblue;
    text-decoration: none;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.329);
    transition: 0.65s;

}

nav ul li a:hover {
    /* color: ( #d5586a 0%, #582d3c 51%, #516aa5 100%); */
    color: #d8596a;
}

.btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    bottom: 0;
    outline: 0;
    border-radius: 5px;
    border: 0;
    /* background: rgb(5, 9, 240); */
    color: rgb(0, 0, 0);
    font-weight: 600;
    cursor: pointer;
}

.btn img {
    width: 20px;
    margin-right: 10px;
}

.content {
    margin-top: 10%;
    color: #fff;
    max-width: 640px;
}

.content h1 {
    font-size: 70px;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.329);
}

.content p {
    margin-top: 10px;
    font-size: 18px;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.329);
}
.content p a{
    color: #fff;
}
.content form {
    display: flex;
    align-items: center;
    width: 600px;
    height: 60px;
    background: rgba(255, 255, 255, 0.37);
    border-radius: 10px;
    padding: 10px;
    margin-top: 30px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.11);
}

.content form input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0);
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #ffffff9d;

}

.content form .btn {
    font-size: 15px;
    padding: 10px 30px;
    margin-right: 0px;
}

.btn {
    background-image: linear-gradient(to right, #d5586a 0%, #582d3c 51%, #516aa5 100%);
    margin: 5px;
    padding: 15px 25px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px rgba(20, 20, 20, 0.089);
    border-radius: 10px;
    display: flex;

}

.btn:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}