/*Import the fonts used*/
@import url('https://fonts.googleapis.com/css?family=Courgette|Open+Sans:400,800&display=swap');
/*Basic reset*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/*font*/



/*Custom properties*/
:root {
    --dark-color: #2d2c2c;
    --purple-solid: #350a4f;
    --purple-transparent: rgba(53, 10, 79, .7);
    --purple-transparent-alt: rgba(53, 10, 79, .5);
    --purple-light: #8f50fb;
    --yellow-solid: #fa9e2c;
    --gradient-color: linear-gradient(to right, var(--yellow-solid), var(--purple-light));
    --gradient-color-alt: linear-gradient(to right, var(--purple-light), var(--yellow-solid));
}

/*Global Styles*/

html{
    background-color: black;
    font-size: 13px;
    scroll-behavior: smooth;
    background: linear-gradient(to right, black, rgb(4, 4, 52));
    
}


body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.6rem;
    color: white;
}

a{
    text-decoration: none;
    color: maroon;
}

ul{
    list-style: none;
}

li{
    text-align: left;
}

section{
    padding: 5rem 0;
}

/*REUSEABLE*/
.container{
    width: 100%;
    max-width: 120rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}



/*HEADER STYLES*/

.header{
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to right, maroon, rgb(6, 6, 82));
    z-index: 999;
}

/*HEADER STYLES - NAV*/

.msgame{
    color: greenyellow;
    padding-left: 10px;
    padding-bottom: 3px;
    
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 99%;
}

.hamburger-menu{
    font-size: 2.6rem;
    color: greenyellow;
    cursor: pointer;
    position: relative;
    z-index: 1500;
    margin-left: auto;
    
}

.hamburger-menu .fa-times{
    display: none;
}

.menu-open .hamburger-menu .fa-times{
    display: block;
}

.menu-open .hamburger-menu .fa-bars{
    display: none;
}

.nav-list{
    position: fixed;
    top: 0;
    right: 0;
    width: min(50vw);
    height: 60vh;
    background-color: rgb(7, 7, 31);
    display: flex;
    flex-direction: column ;
    justify-content: center;
    padding-top: 6rem;
    padding-left: 10px;
    z-index: 1400;
    opacity: 0;


    transform: scale(0);
    transition: opacity 1s;

}

.menu-open .nav-list{
    opacity: 1;
    transform: scale(1);
}

 
/*HIDDEN FORM HAMBURGER*/

.hidden{
    visibility: hidden;
}

/*HIDDEN  NAV BAR HAMBURGER REGISTER HIDDEN REGISTER*/

a[href="form.html"] {
    display: block;
}


.nav-item:not(:last-child){
    margin-bottom: .5rem;
}




.nav-link{
    display: block;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .8rem;
    background-color: grey;
    border-radius: 6px;

}




/*PLAY IT YOUR WAY*/

.site-header{
    position:relative;
    overflow: hidden;
    height: rem;
    background-color: black;
    padding: 4rem;



}
.quote-wrapper{
    margin-top: 3rem;
    width: 100%;
    display: flex;

}

.moving-quote{
    white-space: nowrap;
    position: absolute;
    left: 0;
    animation: moveQuote 13s linear infinite;
    font-size: 16px;
    font-weight: 500;
    color: grey;
    

}



@keyframes moveQuote {
    from {
        transform: translateX(150vw);
    }
    to {
        transform: translateX(-100%);
    }
}






/*HERO SECTION STYLE*/

.hero{
    width: 100%;
    height: 100vh;
    background: url("./images/RaulEafc.JPG");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;    
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    background-color: black;
    opacity: 0.6;
    height: 50vh;
}

.main-heading{
    color: gold;
    line-height: 1;


}

/*TITLE H1*/

.title{
    color: gold;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: lighter;
    font-family: 'Times New Roman', Times, serif;
}







/*LEAGUE SECTION --- HOMEPAGE*/

.ms-league{
    width: 100%;
    margin-top: 2rem;
    padding: .8rem;

}

.msleague-card{
    text-decoration: none;
    color: rgba(153, 205, 50, 0.705);
    display: block;
}

.msleague-card img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: top;
    border-radius: 3px;
    border: solid rgba(245, 222, 179, 0.398);

}

.msleague-info{
    padding: 20px 0;
}

.msleague-date{
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    margin-left: 3px;
}

.msleague-title{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}





/*CUP SECTION*/

.ms-cup{
    width: 100%;
    margin-top: 2rem;
    padding: .8rem;

}

.mscup-card{
    text-decoration: none;
    color: rgba(153, 205, 50, 0.705);
    display: block;
}

.mscup-card img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: top;
    border-radius: 3px;
    border: solid rgba(245, 222, 179, 0.398);

}

.mscup-info{
    padding: 20px 0;
}

.mscup-date{
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    margin-left: 3px;
}

.mscup-title{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}



/*SCHEDULE*/    /*SCHEDULE*/        /*SCHEDULE*/



.ms-league-schedule{    /*OBSOLETE*/

    width: 100%;
    margin-top: 1rem;
    padding: .8rem;             

}                       /*OBSOLETE*/


.schedule-hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.schedule-hero .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(128, 0, 0, 0.323), rgba(205, 205, 216, 0.89));
    z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 2;
    color: rgba(169, 177, 154, 0.374);

}

.hero-content h1{
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 10px black;
    line-height: 3.2rem;

    color: rgba(153, 205, 50, 0.43);

    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-shadow: 0 0 50px maroon;
    
}






/*Schedullllllllllllllllllllllllllllle*/


.schedule-anticipation {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: #0a0a0a;
    color: white;
}

/* Title */
.schedule-title {
    text-align: center;
    margin-bottom: 1rem;
    color: rgba(235, 232, 232, 0.493);
    font-size: 16px;
    font-weight: bold;
}

/* Event Card */
.event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid rgba(236, 229, 229, 0.322);
    border-radius: 8px;
    transition: 0.3s;
    
    height: 60px;
    margin-bottom: 2rem;
}

/* Hover effect (anticipation feel) */
.event:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px maroon;
}

/* Date */
.event-date {
    font-weight: bold;
    color: rgba(153, 205, 50, 0.735);
    min-width: 100px;

    text-shadow: 0 0 10px maroon;
}

/* Details */

.event-details{
    text-align: center;
    color: yellowgreen;
}



.event-details h3 {
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.308);
    
}

.event-details p {
    margin: 0;
    font-size: 0.8rem;
    color: wheat;
    text-shadow: 0 0 10px maroon;
}













/*COMPETITION SECTIONS*/ /*WITH 'i' AS DIFFERENCE*/
/*COMPETITION SECTIONS*/ /*WITH 'i' AS DIFFERENCE*/
/*COMPETITION SECTIONS*/ /*WITH 'i' AS DIFFERENCE*/



/*LEAGUE SECTION*/

.ms-leaguei{
    width: 100%;
    margin-top: 2rem;
    padding: .8rem;
    padding-top: 9rem;

}

.msleague-cardi{
    text-decoration: none;
    color: rgba(153, 205, 50, 0.705);
    display: block;
}

.msleague-cardi img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: top;
    border-radius: 3px;
    border: solid rgba(245, 222, 179, 0.398);

}

.msleague-infoi{
    padding: 20px 0;
}

.msleague-datei{
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    margin-left: 3px;
}

.msleague-titlei{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}



                      /*MS PRO LEAGUE VIEW*/

.msproleague-view{
    color: greenyellow;
    display: flex;
    align-items: center;
    padding-top: 9rem;
    flex-direction: column;
    padding-bottom: 0rem;
}

.mspl{
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: rgba(245, 222, 179, 0.593);
}


.mspl-overview{
    font-size: 1.7rem;
    color: wheat;
}

.main-tab{
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.401);
    margin-bottom: 20px;
    padding-bottom: .8px;
    padding-left: 2rem;
}

.tab-btn{
    background: none;
    border: none;
    color: yellowgreen;
    cursor: pointer;
    padding: 15px;
    border-bottom: 2px solid;
}

.tab-btn.active{
    border-bottom: 2px solid white;
    background: rgba(128, 0, 0, 0.67);
    color: grey;

}

.tab-content{
    display: none;
}

.tab-content.active{
    display: block;
    margin: 2rem;
}


/*GROUP SWITCH*/

.group-switch{
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}


.group-btn{
    padding: 8px 15px;
    border: 1px solid rgba(153, 205, 50, 0.331);
    background: none;
    color: yellowgreen;
    border-radius: 20px;
    cursor: pointer;
    background: none;
}


.group-btn.active{
    background: rgba(128, 0, 0, 0.66);
    color: rgb(144, 143, 143);
}

 /*TABLE*/


 .standing-table{
    width: 100%;
    border-collapse: collapse;
 }

 .standing-table th{
    padding: 15px;
    border-bottom: 1px solid white;
    text-align: left;
 }



 .standing-table td{
    padding: 10px;
    text-align: left;
 }


  /*GROUP TABLE SWITCH*/

  .group-content{
    display: none;
  }

  .group-content.active{
    display: block;
  }

.team{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 210px;
}

.team img{
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.points{
    font-weight: bold;
}


 

/* KNOCKOUT ROUND */  /* KNOCKOUT ROUND */

.finals{
    padding: 2rem 1.2rem;
    background: #0f0f0f3c;
    border-radius: 20px;
}

/* SECTION TITLES */

.sf,
.f{
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: silver;
    text-transform: uppercase;
    position: relative;
}

.sf::before,
.sf::after,
.f::before,
.f::after{
    content: "";
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0 12px;
}

/* MATCH CARD */

.match-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(
        135deg,
        rgba(128, 0, 0, 0.25),
        rgba(255,255,255,0.04)
    );
    border: 1px solid rgba(218, 203, 203, 0.08);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.match-row:hover{
    transform: translateY(-2px);
    border-color: rgba(128, 0, 0, 0.7);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.25);
}

/* TEAM SIDES */

.home,
.away{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 130px;
}

.away{
    justify-content: flex-end;
    text-align: right;
}

.home span,
.away span{
    font-size: 15px;
    font-weight: 700;
    color: #f5f5f5;
}

/* TEAM IMAGES */

.home img,
.away img{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
}

/* SCORE BOX */

.score{
    display: flex;
    align-items: center;
    gap: 6px;
}

.score span{
    min-width: 28px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.25);
}


.final{
    margin-top: 5rem;
    .match-row:hover{
    transform: translateY(-2px);
    border-color: gold;
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.534);
}    



}



.f{
    color: gold;
}


/* OPTIONAL UPDATE TEXT */

.update{
    margin-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* MOBILE */

@media(max-width: 600px){

    .match-row{
        padding: 0.9rem;
    }

    .home,
    .away{
        width: 105px;
    }

    .home span,
    .away span{
        font-size: 13px;
    }

    .home img,
    .away img{
        width: 36px;
        height: 36px;
    }

    .score span{
        min-width: 24px;
        height: 28px;
        font-size: 15px;
    }
}















/*CUP SECTION  COMPETITION PAGE*/

.ms-cupi{
    width: 100%;
    margin-top: 2rem;
    padding: .8rem;

}

.mscup-cardi{
    text-decoration: none;
    color: rgba(153, 205, 50, 0.705);
    display: block;
}

.mscup-cardi img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 3px;
    border: solid rgba(245, 222, 179, 0.398);

}

.mscup-infoi{
    padding: 20px 0;
}

.mscup-datei{
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    margin-left: 3px;
}

.mscup-titlei{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}















/*PLAYER TO WATCH*/

.playerwatch-section{
    padding: 0px;
    color: wheat;
}

.slider-container{
    display: flex;
    align-items: center;
    position: relative;
}

.playerwatch-slider{
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    width: 100%;
}

.playerwatch-card{
    min-width: 320px;
    background: rgba(113, 2, 2, 0.313);
    border-radius: 12px;
    align-items: center;
    padding: 20px;
}

.playerwatch-card img{
    width: 80px;
    height: 80px;
    border-radius: 10%;
    object-fit: cover;

}

.playerwatch-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.playerwatch-section h2{
    margin-bottom: 40px;
    margin-left: 30px;
    margin-top: 20px;
}

.playerwatch-text h3{
    margin-bottom: 10px;
}

.arrow{
    background: rgba(128, 0, 0, 0.111);
    border: none;
    font-size: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 50%;
    margin: 10px;
    color: yellowgreen;
}







/*RANKING SYSTEM*/


.msrankintro{
    color: greenyellow;
    display: flex;
    align-items: center;
    padding-top: 9rem;
    flex-direction: column;
    padding-bottom: 5rem;
}

.leaderboard{
width: 100%;
padding-top:10rem;
}

.row-header{
    padding: 0rem;
}

.row {
display: flex;
border-bottom: 1px solid yellowgreen;
background-color: maroon;
}




/* FIXED NAME COLUMN */

.col.name {
min-width: 280px;
display: flex;
align-items: center;
gap: 10px;
padding: 12px;
background: rgb(6, 6, 82);
position: sticky;
left: 0;
z-index: 2;
}

.col.name img {
width: 35px;
height: 35px;
border-radius: 50%;

}

/* SCROLLABLE POINTS */
.scroll {
overflow-x: auto;
white-space: nowrap;
flex: 1;
color: white;
}

.col.points {
min-width: 20px;
padding: 12px;
text-align: right;
font-weight: bold;
}






/* HEADER */
.rank-header {
background: rgb(29, 172, 19);
font-weight: normal;
padding-bottom: 30PX;
display: flex;
}




/*NEWS SECTION*/


.news-title {
    padding-top: 6rem;
    padding-bottom: 2rem;
    font-size: 24px;
    font-weight: 800;
    margin: 40px 0 20px;
    padding-left: 20px;
}

/* GRID LAYOUT */
.news-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* CARD */
.news-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.news-img {
    width: 100%;
    height: 160px;   /* smaller fixed height */
    object-fit: cover; /* keeps image nice */
    object-position: top;
}

/* CONTENT */
.news-content {
    padding: 12px;
}

.news-date {
    font-size: 11px;
    color: #aaa;
}

.news-headline {
    font-size: 16px;
    color: #ff006f;
    margin: 5px 0;
}

.news-text {
    font-size: 13px;
    color: #ccc;
}



/*FOOTER HOME*/

.footer{
    padding: .2rem ;
    padding-bottom: 5rem;
    padding-top: 5rem;
}


.channel{
    padding-left: 1rem;
    
}

.social-list{
    display: flex;
    flex-wrap: wrap;
    gap: 19px;

}

.channel-head{
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-left: 1re;
    color: grey;
}

.channel-list{
    padding-top: .8rem;
    padding-left: .2rem;
    padding-bottom: .6rem;

}

.channel-link{
    color: rgba(245, 222, 179, 0.631);
    
}



/*ABOUT & GUIDELINE*/

.about-main{
    background: linear-gradient(to right, black, rgb(3, 3, 52));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;


}


.about{
    margin-top: 3rem;
    margin-left: 1rem;
    color: grey;
    

}


.about-head{
    margin-bottom: 2rem;
}

.about-text{
    color: rgba(153, 205, 50, 0.729);
    
}

/*BUTTON*/

button{
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background: rgb(30, 29, 29);
    color: yellowgreen;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
}



/*GUIDELINES*/


.guideline-head{
    color: grey;
    margin-bottom: 3rem;


}


.guideline{
    margin-left: 1rem;
    
}

.guide{
    color: rgba(153, 205, 50, 0.712);
    margin-bottom: 1rem;
}



/*FORM*/            /*FORM*/        /*FORM*/        /*FORM*/

.regform{
    padding: 1rem;
}

.form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accounts{
    padding: 1rem;
    margin-top: 2rem;
}


.accountdetail{
    font-size: large;
    font-weight: normal;
}

.acc{
    text-align: center;
    margin: 2rem 0;
    padding-top: 1rem;
    border: 3px solid rgba(227, 234, 215, 0.157);
    
}


.submit-button{
    text-align: center;
    
}

.regform button{
    width: 8rem;
    display: block;
    margin: 20px auto 0;
}



input{
    width: 100%;
    height: 28px;
    border-radius: 4px;
    background-color: rgb(230, 230, 237);
    
}


.acc button{
    width: 7rem;
    margin: 1rem;
}


.form-title{
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1px;
    color: rgba(245, 222, 179, 0.537);

}

.title-form{
    margin-bottom: 0px;
    padding-bottom: 1rem;
    margin-top: 1rem;
    padding: 10px;
}

.countdown{
    text-align: center;
    font-size: 1.5rem;
    color: yellowgreen;
    margin-bottom: 1px;
    margin-top: 9rem;
}





/*LIVESCORES CSS*/


.msscores{
    text-align: center;
    margin-top: 10rem;
    color: #e0d8d859;
}



/*NEW LIVESCORE STYLING*/


/*Hide 4 livescores*/

.hide-livescore{
    display: none;
}

/* center everything */

.livescores{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/* match row */
.match {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #000;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin: 1rem;
    width: 400px;
    font-size: 18px;

    
}



.match span {
    white-space: nowrap;         /* prevent breaking*/
}


.match span[id^="team"] {
    flex: 1;                      /* teams take available space*/
    overflow: hidden;
    text-overflow: ellipsis;      /* cut long names*/
}

.match span[id^="score"] {
    font-weight: bold;
}

.scorebox{
    background: #000;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    font-size: 25px;
    border-radius: 50%;
}





/* vs text */
.vs {
    color: black;
    font-size: 10px;
}

/* status */
#status {
    margin-left: 10px;
    font-size: 10px;
    color: maroon;
        
}

.ft{
    font-size: 12px;
    min-width: 30px;
    color: red;
    font-weight: bolder;
}




/*ADMIN BOARD*/     /*ADMIN BOARD*/     /*ADMIN BOARD*/     /*ADMIN BOARD*/

.registration-title{
    color: yellowgreen;

    padding-bottom: 4rem;
    border-bottom: 2px solid greenyellow;
    text-align: center;
    
}


.registration-admin-title{
    font-size: large;
    margin-bottom: 1.5rem;
    color: #ff006f;
}

.form-control{
    font-size: large;
    padding-bottom: 1.5rem;
    color: #ff006f
}

.turnFormOff{
    color: red;
    margin-left: 20px;
}
.turnFormOn{
    color: rgba(13, 241, 13, 0.97);
    margin-left: 20px;
}


.updatematch{
    margin-top: 1px;
    margin-bottom: 2rem;
    margin-bottom: 5rem;
    font-size: large;
    text-align: center;
    color: #ff006f;
}

.match-update{
    border-bottom: 2px solid yellowgreen;
    
}

.logout{
    color: rgba(244, 244, 7, 0.908);
    text-align: center;
}




/*MS CUP*/      /*MS CUP*/  /*MS CUP*/      /*MS CUP*/




.mscup-view{
    color: greenyellow;
    display: flex;
    align-items: center;
    padding-top: 9rem;
    flex-direction: column;
    padding-bottom: 4rem;
    
}


.switch-buttons{
    margin-left: 2rem;
}


.overview-box{
    padding-top: 2rem;
    color: rgba(245, 222, 179, 0.593);

}



