
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

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


body{


    background-attachment: fixed;
    min-height: 100vh;
    padding: 3rem;
    color: rgb(92, 55, 65);
    font-family: Fredoka, sans-serif;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 238, 194, 0.8),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            rgb(166, 210, 235) 0%,
            rgb(214, 226, 232) 45%,
            rgb(255, 210, 205) 100%
        );

    overflow-x: hidden;

}


.dashboard {
    width: min(1100px, 100%);
    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;
    grid-template-rows: 1fr 1fr;

    gap: 1.2rem;

    margin: auto;
}


#music-player{

    position: fixed;
    bottom: 25px;
    left: 25px;

    width: 340px;
    padding: 1rem 1.1rem;

    background: rgba(255, 248, 251, 0.88);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 1.2rem;

    box-shadow:
        0 15px 40px rgba(70, 50, 70, 0.16);

    z-index: 5;


}


.music-info{

    display: flex;
    align-items: center;
    gap: 0.8rem;

}

.music-icon{

    width: 44px;
    height: 44px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;



    background: rgb(255, 210, 225);
    color: rgb(202, 76, 119);

    font-size: 1.5rem;

}

.music-label{

    font-size: 0.65rem;

    letter-spacing: 1px;

    opacity: 0.55;

}

#song-name{

    font-size: 1rem;

    color: rgb(92, 45, 60);

}

#music-select{

    appearance: none;
    width: 100%;
    margin-top: 1rem;

    padding: 0.6rem 0.8rem;
    border: none;


    border-radius: 0.8rem;
    background: rgb(255, 235, 242);
    color: rgb(92, 45, 60);

    font-family: Fredoka, sans-serif;
    cursor: pointer;
}

.music-controls{

    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;

    gap: 0.6rem 0.8rem;
    margin-top: 0.9rem;

}

#music-btn{

    width: 42px;
    height: 42px;

    grid-row: span 2;

    border: none;
    border-radius: 50%;


    background: rgb(226, 103, 143);
    color: white;

    font-size: 1rem;
    cursor: pointer;

    transition: transform 0.15s ease;

}

#music-btn:hover{

    transform: scale(1.08);

}

#volume-control{

    width: 55px;
    height: 3px;

    justify-self: end;

    accent-color: rgb(226, 103, 143);

}

#song-progress{

    width: 100%;
    height: 4px;
    accent-color: rgb(226, 103, 143);
    cursor: pointer;


}

.city-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#location-btn{
    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background: rgb(255, 225, 237);
    color: rgb(202, 76, 119);

    cursor: pointer;

    font-size: 1rem;

    transition: 0.2s;
}

#location-btn:hover{
    transform: scale(1.1);
    background: rgb(255, 210, 227);
}

#petals{

    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;



}

.petal{

    position: absolute;
    top: -20px;
    width: 12px;
    height: 9px;
    background-color: rgb(214, 70, 125);
    opacity: 0.85;
    border-radius: 100% 0 100% 0;
   

    animation: sakuraWind linear forwards;
}

@keyframes sakuraWind{

    0%{

        transform: translate(0, -20px) rotate(0deg);
    }

    100%{
        transform: translate(calc(var(--drift) * -1), 110vh) rotate(360deg);
    }

}

.sakura-tree{


    position: fixed;
    width: 2250px;
    height: 2250px;

    right: -1100px;
    bottom: -320px;
    z-index: -1;

    pointer-events: none;



}





.container,
#pomodoro,
#WeatherDisplay{

    
    position: relative;
    z-index: 2;
}


@media (max-width: 900px){
    #dashboard{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}





.container{

    grid-column: 1;
    grid-row: 1 / span 2;

    width: 100%;
    min-height: 420px;



    padding: 1.5rem;

    box-shadow:
        0 10px 30px rgba(120, 50, 80, 0.12),
        0 2px 8px rgba(120, 50, 80, 0.06);

    background: rgba(255, 248, 251, 0.9);
    border-radius: 1.5rem;
    
    border: 1px solid rgba(255, 255, 255, 0.7);


    min-width: 15rem;
    text-align: center;
    
    font-family: Fredoka, sans-serif;

    transition: transform 0.25s ease, box-shadow 0.25s ease;


}

.container:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(120, 50, 80, 0.15), 0 4px 10px rgba(120, 50, 80, 0.08);
    
                
}



.deleteButton{

    background-color: transparent;
    color: rgb(110, 40, 65);
    border: 0cap;
    width: 24px;
    height: 24px;

    border-radius: 100%;
    transition: 0.1s;
    


}

.deleteButton:hover{
    


    cursor: pointer;
    color: rgb(80, 25, 45);
    transform: scale(1.1);
    background-color: rgb(239, 143, 170);


}


#task-list{

    list-style: none;
   
    
    

}

#task-list:hover{
   
    cursor: pointer;


}



#task-input{

    background-color: rgb(255, 241, 246);
    color: rgb(92, 45, 60);
    padding: 0.5rem;
    border-radius: 2rem;
    margin-top: 5vh;

    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    border:0cap;
    margin-bottom: 1vh;

}


#task-input:hover{


    cursor: pointer;

    
}


#task-input:active{


    transform: scale(0.98);
    

}


#task-input:focus{

    

    outline: 2px solid rgb(239, 143, 170);

}


#task-btn{


    background-color: rgb(226, 103, 143);

    color: rgb(255, 179, 247);

    padding: 0.5rem;
    
    border-radius: 7%;
    margin-top: 5vh;
    margin-bottom: 1vh;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    font-family: Fredoka;
    border: 0cap;
    transition: 0.2s;
     

}

li{

    padding: 0.5rem;
    min-width: 10rem;
    
    display: flex;
    border-radius: 10%;
    background-color: rgb(255, 218, 230);
    margin-top: 10px;
    justify-content: space-between;

    align-items: center;

    transition: 0.2s;


}

li:hover{

    transform: translateY(-3px) scale(1.01);
    background-color: rgb(255, 198, 216);



}

#task-btn:hover{

    background-color: rgb(193, 0, 180);

    cursor: pointer;


}

#task-btn:hover{
    transform: scale(1.01);
    background-color: rgb(202, 76, 119)


}

#task-btn:active{

    transform: scale(95%);
}


.completed{
    
    opacity: 0.5;
    text-decoration:line-through;
    transition: 0.3s;


}



#pomodoro{
    grid-column: 2;
    grid-row: 1;
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;

    font-family: Fredoka, sans-serif;

    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:

        0 10px 30px rgba(120, 50, 80, 0.12),
        0 2px 8px rgba(120, 50, 80, 0.06);


    background: rgba(255, 242, 247, 0.95);
    height: 15rem;
    width: 100%;

    transition: transform 0.25s ease, box-shadow 0.25s ease;


    

}



#pomodoro:hover{

    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(120, 50, 80, 0.15), 0 4px 10px rgba(120, 50, 80, 0.08);
    


}


#timer{


    font-size: 3rem;
    margin-top: 1rem;
    font-weight: bold;   

    color  : rgb(110, 40, 65);
    background-color: rgb(255, 232, 236);

    border-radius: 2rem;


}

#start-btn{


    background-color: rgb(226, 103, 143);
    color: rgb(255, 179, 247);

    padding: 0.5rem;
    
    border-radius: 7%;
    margin-top: 1rem;

    margin-bottom: 1vh;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    font-family: Fredoka;
    border: none; 

    transition: 0.2s;
     

}

#reset-btn{
    
    background-color: rgb(226, 103, 143);
    color: rgb(255, 179, 247);

    padding: 0.5rem;
    
    border-radius: 7%;
   
    margin-top: 4vh;
    margin-bottom: 1vh;

    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    font-family: Fredoka;
    border: 0cap;

    transition: 0.2s;


}
#start-btn:hover{

    transform: scale(1.01);
    background-color: rgb(202, 76, 119)

}

#start-btn:active{

        transform: scale(95%);


}

#reset-btn:hover{

    transform: scale(1.01);
    background-color: rgb(202, 76, 119);


}


#reset-btn:active{

    transform: scale(95%);


}


#WeatherDisplay {
    grid-column: 2;
    grid-row: 2;
    background: rgba(248, 247, 255, 0.9);
    box-shadow:
        0 10px 30px rgba(120, 50, 80, 0.12),
        0 2px 8px rgba(120, 50, 80, 0.06);    
    text-align: center;

    font-family: Fredoka, sans-serif;
    color: rgb(92, 55, 65);

    width: 100%;

    min-height: 15rem;
    padding: 1.5rem;

    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    border-radius: 1.5rem;
    
}


#WeatherDisplay:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(120, 50, 80, 0.15), 0 4px 10px rgba(120, 50, 80, 0.08);
    

}


#WeatherDisplay h2 {

    margin-bottom: 1rem;
}


.search {


    display: flex;
    gap: 0.4rem;
}

#city-input {
    
    flex: 1;

    padding: 0.5rem;
    
    background-color: rgb(255, 241, 246);
    color: rgb(92, 45, 60);

    outline: none;
    border: none;
    min-width: 0;

    border-radius: 2rem;
}

#weather-btn {

    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 1rem;

    
    background-color: rgb(226, 103, 143);
    
    color: white;
    
    font-family: Fredoka;
    
    cursor: pointer;




}

#weather-btn:hover {


    transform: scale(1.0f3);
    background-color: rgb(202, 76, 119);

}

#city-name {

    margin-top: 1.5rem;

    font-size: 1.4rem;





}



#temperature {


    font-size: 3rem;

    font-weight: bold;


    color: rgb(110, 40, 65);
    margin-top: 0.5rem;

}



#condition {


    font-size: 1.1rem;
}




.weather-details {


    display: flex;
    justify-content: space-between;
    gap: 0.5rem; 
    flex-wrap: wrap;


}


#weather-error {

    
    margin-top: 0.7rem;
    font-size: 0.9rem;


}






.credits{
    position: fixed;



    bottom: 8px;

    left: 50%;
    transform: translateX(-50%);
    
    font-size: 11px;
    
    
    z-index: 5;
}

.credits a{
    color: rgb(92, 55, 65);
    text-decoration: none;

    opacity: 0.6;
}

.credits a:hover{
    opacity: 1;
    text-decoration: underline;
}





body {


    display: block;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    background-attachment: fixed;
}

#dashboard {


    width: min(1100px, calc(100% - 4rem));
    margin: 3rem auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    grid-template-rows: 1fr 1fr;

    gap: 1.2rem;
}

.container {

    grid-column: 1;
    grid-row: 1 / 3;
}

#pomodoro {
    grid-column: 2;
    grid-row: 1;

}

#WeatherDisplay {

    grid-column: 2;
    grid-row: 2;

}



body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 238, 194, 0.8),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            rgb(166, 210, 235) 0%,
            rgb(214, 226, 232) 45%,
            rgb(255, 210, 205) 100%
        );
}


body {


    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}


#dashboard {

    width: min(760px, calc(100vw - 3rem));
    display: grid;
    grid-template-columns: 420px 260px;
    gap: 1rem;
    margin: auto;
    align-items: start;

}

.container {


    grid-column: 1;
    grid-row: 1;
    min-height: 440px;
    height: auto;

}


#dashboard > * {



    width: 100%;
    min-width: 0;
}





#WeatherDisplay {


    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 1.2rem;

}

#WeatherDisplay h2 {

    margin-bottom: 0.7rem;
}

#city-name {

    margin-top: 0.8rem;
}

#temperature {


    font-size: 2.5rem;

    margin-top: 0.2rem;

}

#condition {



    font-size: 1rem;
}

.weather-details {


    margin-top: 0.7rem;
}

#weather-error {

    margin-top: 0.4rem;
    overflow-wrap: anywhere;
}



.container {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;


    height: 467px;
    padding: 1.8rem;
}




#pomodoro {

    grid-column: 2;
    grid-row: 1;

    width: 100%;
    height: 170px;


}




#WeatherDisplay {




    grid-column: 2;
    grid-row: 2;
    width: 100%;


    min-height: 270px;
    height: auto;

}




#task-input {
    width: 65%;



    padding: 0.7rem 1rem;
    font-size: 1rem;
}



#task-btn {

    padding: 0.7rem 1rem;
    font-size: 1rem;

}



#pomodoro {
    height: 190px;
}


#start-btn,

#reset-btn {

    margin-top: 0.5rem;
}



#dashboard {


    row-gap: 0.3rem;

    grid-template-rows: 190px auto;
}

#WeatherDisplay {

    margin-top: 0;


}


#task-list {



    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;

}


#task-list::-webkit-scrollbar{


    display: none;
}


#task-input {

    width: 65%;

    margin-top: 3vh;
    margin-bottom: 0;
}

#task-btn {

    margin-top: 3vh;
    margin-bottom: 0;

    padding: 0.7rem 1rem;
}

#task-list li {


    padding: 0.7rem 1rem;
    margin-top: 0.6rem;

    border-radius: 0.8rem;
}




.deleteButton {


    width: 28px;
    height: 28px;
    border-radius: 50%;
    
    font-size: 1rem;
    flex-shrink: 0;


}

.deleteButton:hover {


    background-color: rgb(239, 143, 170);
    color: rgb(80, 25, 45);


}




#timer {


    padding: 0.4rem 0.8rem;

    margin-top: 0.7rem;
    font-size: 2.7rem;


}


#start-btn,
#reset-btn {

    margin-top: 0.8rem;
    margin-bottom: 0;
    padding: 0.5rem 0.9rem;

}



#start-btn {
    margin-right: 0.3rem;

}



#city-name {

    font-size: 1.3rem;
    font-weight: 600;
}



#temperature {

    font-size: 2.8rem;
    margin-top: 0.3rem;



}



#condition {

    margin-top: 0.2rem;
    opacity: 0.75;
}



.weather-details {


    margin-top: 1rem;
    padding-top: 0.8rem;

    border-top: 1px solid rgba(202, 76, 119, 0.15);
}






#task-btn,
#start-btn,
#reset-btn,
#music-btn {


    background-color: rgba(255, 248, 251,);
}





.container {

    background: rgba(255, 244, 248, 0.94);
}



#pomodoro {

    background: rgba(255, 232, 240, 0.94);
}



#WeatherDisplay {


    background: rgba(242, 239, 250, 0.94);
}




#music-player {
    background: rgba(255, 239, 245, 0.94);


}


#city-input {

    background-color: rgb(248, 247, 255);


}




.container h1,


#pomodoro h2,



#WeatherDisplay h2 {

    color: rgb(110, 40, 65);
    font-weight: 600;
}

.container h1 {
    font-size: 1.8rem;
}

#pomodoro h2,
#WeatherDisplay h2 {

    font-size: 1.3rem;
}


.container,
#pomodoro,
#WeatherDisplay {

    padding: 1.5rem;
}


.container h1,
#pomodoro h2,
#WeatherDisplay h2 {
    margin-bottom: 1rem;
}


.container,
#pomodoro,
#WeatherDisplay {

    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(120, 50, 80, 0.10);

}


.container:hover,
#pomodoro:hover,
#WeatherDisplay:hover {
    transform: translateY(-3px);
}




body {

    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;
    background: rgb(214, 230, 238);

}

body::before {



    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;

    background:
        radial-gradient(
            circle at 72% 18%,
            rgba(255, 238, 194, 0.9),
            transparent 22%
        ),
        radial-gradient(
            circle at 20% 70%,
            rgba(255, 255, 255, 0.55),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgb(166, 210, 235) 0%,
            rgb(214, 226, 232) 48%,
            rgb(255, 210, 205) 100%
        );
}











@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

body {


    min-height: 100vh;

    padding: 2.5rem 1.5rem 7rem;
    overflow-x: hidden;


    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(255, 239, 246, 0.9),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(235, 225, 250, 0.8),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgb(239, 233, 246) 0%,
            rgb(250, 241, 244) 50%,
            rgb(238, 226, 239) 100%
        );
}

#dashboard {



    width: min(850px, calc(100vw - 3rem));
    margin: 2rem auto 0;
    display: grid;

    grid-template-columns: minmax(0, 1fr) 270px;
    grid-template-rows: 190px 275px;
    gap: 0.9rem;
    align-items: stretch;
}

.container,
#pomodoro,
#WeatherDisplay {

    width: 100%;
    min-width: 0;


    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 12px 35px rgba(91, 60, 90, 0.10),
        0 3px 10px rgba(91, 60, 90, 0.05);
    backdrop-filter: blur(14px);
}

.container {


    grid-column: 1;
    grid-row: 1 / 3;

    height: 480px;
    padding: 1.7rem;
    background: rgba(255, 248, 251, 0.88);
    border-radius: 1.5rem;
}

.container h1 {

    
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    color: rgb(110, 40, 65);
}

#task-input {


    width: 65%;
    height: 42px;
    padding: 0.7rem 1rem;
    margin: 1.2rem 0 0;


    border: 1px solid rgba(202, 76, 119, 0.12);
    border-radius: 2rem;
    background: rgba(248, 247, 255, 0.95);
    color: rgb(92, 45, 60);
    font-family: Fredoka, sans-serif;
    font-size: 1rem;
}

#task-btn {


    height: 42px;
    padding: 0.7rem 1rem;
    margin: 1.2rem 0 0 0.25rem;
    border: none;


    border-radius: 0.9rem;
    background: rgb(202, 76, 119);
    color: white;
    font-family: Fredoka, sans-serif;
    font-size: 1rem;
    cursor: pointer;
}



#task-btn:hover,
#start-btn:hover,
#reset-btn:hover,
#weather-btn:hover {
    background: rgb(176, 58, 99);
}

#task-list {


    max-height: 300px;
    margin-top: 0.8rem;
    overflow-y: auto;

    scrollbar-width: none;
}

#task-list::-webkit-scrollbar {


    display: none;
}

#task-list li {


    width: 100%;
    min-width: 0;
    padding: 0.7rem 1rem;


    margin-top: 0.6rem;
    border-radius: 0.8rem;
    background: rgba(255, 218, 230, 0.85);
}

#task-list li span {


    min-width: 0;

    overflow-wrap: anywhere;
}

#pomodoro {


    grid-column: 2;
    grid-row: 1;
    height: 190px;
    padding: 1.3rem;


    background: rgba(255, 239, 244, 0.9);
    border-radius: 1.4rem;
}

#pomodoro h2 {


    margin-bottom: 0.6rem;
    font-size: 1.3rem;


    color: rgb(110, 40, 65);
}

#timer {


    margin-top: 0.3rem;
    padding: 0.25rem 0.7rem;
    font-size: 2.6rem;


    background: rgba(255, 232, 236, 0.8);
    border-radius: 1.3rem;
}

#start-btn,
#reset-btn {

    margin-top: 0.6rem;

    margin-bottom: 0;
    padding: 0.45rem 0.85rem;
    border: none;
    
    border-radius: 0.8rem;
    background: rgb(202, 76, 119);
    color: white;
    
    font-family: Fredoka, sans-serif;
    cursor: pointer;
}

#WeatherDisplay {

    grid-column: 2;
    grid-row: 2;

    height: 275px;
    min-height: 0;
    padding: 1.3rem;
    background: rgba(243, 240, 250, 0.93);
    border-radius: 1.4rem;
}

#WeatherDisplay h2 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    color: rgb(110, 40, 65);
}

.search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}



#city-input {


    flex: 1;
    min-width: 0;

    height: 34px;
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 2rem;


    background:
        linear-gradient(
            135deg,
            rgb(255, 244, 248),
            rgb(241, 237, 250)
        );
    color: rgb(92, 45, 60);


    font-family: Fredoka, sans-serif;
    font-size: 0.9rem;
}


#city-input::placeholder {
    color: rgb(120, 95, 105);
    opacity: 0.75;
}




#weather-btn {


    flex-shrink: 0;
    height: 34px;
    padding: 0.45rem 0.75rem;
    border: none;


    border-radius: 0.8rem;

    background: rgb(202, 76, 119);
    color: white;
    font-family: Fredoka, sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
}



#location-btn {


    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: rgb(255, 225, 237);
    color: rgb(202, 76, 119);

}




.city-heading {

    margin-top: 0.55rem;
}





#city-name {


    margin-top: 0;
    font-size: 1.25rem;
}





#temperature {


    margin-top: 0.1rem;
    font-size: 2.6rem;
}



#condition {


    margin-top: 0.1rem;
    font-size: 0.95rem;
    opacity: 0.75;
}


.weather-details {


    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(202, 76, 119, 0.12);
}


.weather-details p {
    font-size: 0.85rem;
}



#weather-error {


    margin-top: 0.3rem;
    font-size: 0.8rem;
    overflow-wrap: anywhere;
}



#music-player {


    width: 330px;
    bottom: 640px;
    left: 20px;
    padding: 0.9rem 1rem;


    background: rgba(255, 241, 246, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.2rem;

    box-shadow:
        0 12px 35px rgba(91, 60, 90, 0.13);


}



.container:hover,
#pomodoro:hover,
#WeatherDisplay:hover {



    transform: translateY(-2px);
    box-shadow:
        0 16px 38px rgba(91, 60, 90, 0.13),
        0 4px 12px rgba(91, 60, 90, 0.06);

}

@media (max-width: 760px) {



    body {
        padding: 1.5rem 1rem 8rem;
    }



    #dashboard {


        width: min(500px, 100%);
        grid-template-columns: 1fr;

        grid-template-rows: auto auto auto;
        gap: 0.9rem;


    }

    .container {


        grid-column: 1;
        grid-row: 1;

        height: 440px;


    }

    #pomodoro {
        grid-column: 1;
        grid-row: 2;


    }

    #WeatherDisplay {


        grid-column: 1;

        grid-row: 3;


    }


    #music-player {


        width: min(330px, calc(100vw - 2rem));
        left: 50%;

        transform: translateX(-50%);


    }


}


#dashboard {


    transform: translate(-60px, 200px);

}