*{
    margin:0;
    padding:0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-color: black;
}

.navbar{
    height: 70px;
    background-color: black;
    display: flex;
}

.text{
    display: flex;
    justify-content: space-between;
    margin-left: 200px;
    width: 500px;
    align-items: center;
    justify-items: center;
    text-align: center;
    font-size: 13px;
    color: white;
}

.logo{
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background-color: white;
    color: black;
    font-weight: 500;
    border: 3px solid lightblue;
    &:hover{
        cursor: pointer;
    }
}

.logo img{
    height: 35px;
    
}

.dropdown-content {
    visibility:hidden;
    position: absolute;
    min-width: 160px;
}

.dropdown-content a {
    color: black;
    padding: 10px 50px; 
    text-decoration: none;
    display: block;
    background-color: white;
    font-weight: 500;
}

.job:hover .dropdown-content {
    visibility:visible;
}

.dropdown-content a:hover {
background-color:rgb(0, 255, 145);
}

.job h4 {
    padding: 10px 25px;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid white;
    &:hover{
        color:black;
        background-color: white;
        border:1px solid black;
    }
}

.login{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    border:1px solid white;
    padding: 10px 25px;
    color:white;
    background-color: black;
    margin-left: 300px;
    margin-top: 15px;
    margin-bottom: 15px;
    &:hover
    {
        color: black;
        background-color: white;
        cursor: pointer;
    }
}
.content {
    text-align: center;
    color:white;
    background-image:url(background.jpg); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    height: 700px; 
    margin: 0;
}

.content{
    padding-top: 100px;
}

.head{
    font-size: 40px;
    background: linear-gradient(to right, #d2cbcd, rgb(70, 10, 173), #0c72c5, #26c6da, #17881d, #b40b0b, #cd6d50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tail{
    padding-top: 15px;
    font-size: 25px;
    background: linear-gradient(to right, #e43567, rgb(70, 10, 173), #0c72c5, #da265f, #17881d, #b40b0b, #cd6d50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line{
    height: 7px;
    background-color: rgb(46, 44, 44);
}
.bottom li{
    color: white;
}


.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    padding: 20px;
}

.footer-item{
    padding: 5px;
    display: flex;
    flex-direction: column;
    
}

.footer-item p{
    padding: 5px;
    font-weight: 500;
}
