@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&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');

body {
    font-family: 'Fredoka', sans-serif;
    background: url(../../images/wallpaper.png) no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-top: 5px;
    margin-bottom: 5px;
}

.container {
    display: flex;
    min-height: 80vh;
    margin: 20px;
}

aside {
    width: 20%;
    background: transparent;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 40px;
}

aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

aside ul li {
    margin: 15px 0;
    width: 80%;
}

aside ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
}

main {
    width: 80%;
    padding: 20px;
}

section {
    background: transparent;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(80px);
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
}

#task-deadline {
    width: 98%;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Fredoka';
}

#save-task {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Fredoka';
}

#task-name {
    width: 98%;
    padding: 10px;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

#task-name::placeholder {
    font-family: "Fredoka";
}

textarea {
    width: 100%;
    height: 80px;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: vertical;
    font-family: "Fredoka";
}

label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}