@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


*{
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
}



h1{
    font-weight: 500;
    font-size: 2.0rem;
}
h2{
    font-weight: 500;
    font-size: 1.5rem;
}

p{
    font-weight: 400;
    font-size: 1.0rem;
}



body{
    height: 100dvh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: #1F1F1F;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

header{
    background-color: #2C2C2C;
    width: 100vw;
    height: 70px;
    display: flex;
}

#header{
    height: 70px;
    width: 100vw;
    max-width: 1000px;
    display: flex;
    margin: auto;

}


#home-button{
    height: 40px;
    width: 40px;
    background-image: url('images/home-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: auto 0px;
    transition: filter 0.4s ease;

}
#home-button:hover{
    filter: brightness(0.5);
}
#home-button:active{
    transition-duration: 0.1s;
    filter: brightness(1);
}


main{
    height: calc(100vh - 70px);
    width: 100vw;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

main p{
    margin: 0px 20px;
    width: 80%;
    text-align: justify;
    margin-bottom: 40px;
}

main h1{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    text-decoration: underline;
}


.plan-container{
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 40px;
}

.plan-container aside{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;

}

.plan-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: filter 0.4s ease;
}
.plan-item:hover{
    filter: brightness(0.5);
}










