* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    /*background: #f0f2f5;*/
    background: gray;
    color: #333;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 9%;
    background: rgba(255, 255, 255, 0);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.hamburger{
    display: none;
    width:20px;
    height:20px;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .list {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 4px 0;
}
.close{
    display: none;
    margin-right: 20px;
    flex-direction: column;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    color: white;
}
.close.active {
    display: block;
}
.hamburger.hide {
    display: none;
}
.content{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
    gap: 1.5rem;
}
.navbar .name h1{
    font-size: 36px;
    font-family: "Calibri Light" , sans-serif;
    cursor: pointer;
}
.navbar .content a {
    margin: 0 15px;
    text-decoration: none;

    color: white;
    font-weight: 600;
}
.navbar nav a:hover {
    color: #0073e6;
}
.social-icons{
    width: 100px;
    display: flex;
    justify-content: space-around;

}
.social-link {
    color: #333;
    margin-left: 15px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-link:hover {
    color: #0073e6;
}

/* Hero Section */
.hero {
    margin-bottom: 5%;
    position: relative;
    top: 70px;
    width: 100%;
    height: 100vh;
    border-bottom: gray 7px solid;
    background: url('images/background-2.jpg') no-repeat center center/cover ;
    display: flex;
    justify-content: center;
}
.log-in-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    width: 300px;
    padding: 10px;
    border-radius: 10px;
}
.log-in-form h1{
    color: white;
}
.loginForm{
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.loginForm label{
    display: none;
}
.loginForm input{
    border: none;
    outline: none;
    width: 100%;
    height: 30px;
    padding:  10px;
    border-radius: 10px;
}
.loginForm button{
    border: none;
    width: 50%;
    height: 25px;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
.loginForm button:hover{
    background-color: #0073e6;
}

.footer{
    min-height: 30vh;
    width: 100%;
    background: radial-gradient(ellipse at top left, #7C3AED 40%, #5B21B6 55%, #4C1D95 70%, #1E1B4B 85%, #0F172A 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.designed-by{
    padding-top: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
}
.links{
    width: 100%;
    padding: 1%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.credits{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: white;
}
.credits span {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.credits span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
}
.credits a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
.credits a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.credits a:hover::after{
    width: 100%;
}
.social-icons span{
    display: none;
}
.social-icons a::after{
    background-color: transparent;
}
@media Screen and (max-width: 1121px) {
    .content {
        display:none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        color: #f0f0f0;
    }
    .hamburger {
        display:block;
    }

}