:root {
    --main-bg-color: #FAFAFA;
    --brand-color: #F43F5E;
    --mid-color:#475569;
    --dark-color: #1E293B;
    overflow:overlay;
    overflow-x: hidden;
    scroll-behavior:smooth !important;
}

body{
    background-color: var(--main-bg-color);
    font-family: 'Nunito', sans-serif;
    color: var(--mid-color);
}

body p{
    font-size: 1.47rem;
}

body h2{
    color:var(--dark-color);
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
    scroll-margin-top: 1em;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(0,0,0,0);
    -webkit-border-radius: 100px;
  }

::-webkit-scrollbar:hover {
    background-color: rgba(0, 0, 0, 0.09);
}

::-webkit-scrollbar-thumb:vertical {
    background: var(--dark-color);
    opacity: 0.1;
    -webkit-border-radius: 100px;
}
::-webkit-scrollbar-thumb:vertical:active {
    background: var(--dark-color);
    -webkit-border-radius: 100px;
}

.menu{
    background-color: var(--brand-color);
    width: 100%;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 12rem;
    height: 4rem;
    border: 0.3rem solid var(--dark-color);
    color: var(--dark-color);
    font-size: 1.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Almarai', sans-serif;
}

.darkmode{
    background: none repeat scroll 0 0 transparent;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    border: 0.2rem solid var(--dark-color);
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3rem;
    border-spacing: 0;
}

.title{
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.title h1{
    font-family: 'Playfair Display', serif;
    font-size: 4.4rem;
    color:var(--dark-color);
}

.hero{
    width: 100%;
}

.tags{
    display: flex;
    justify-content: space-between;
    color: #F43F5E;
    font-size: 0.8rem;
    font-weight: bold;
}

.content{
    padding: 4rem;
}

.summary{
    padding-right: 2rem;
    position: sticky;
    top: 2rem;
}

.summary h5{
    font-weight: bold;
    color: var(--dark-color);
}

.summary hr{
    border: 1px solid #F43F5E;
    margin-top: 1px;
}

.summary ul{
    list-style-type: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.summary a{
    text-decoration: none;
    color:var(--mid-color);
    font-size: 1.12rem;
}

.summary .socialButtons{
    display: flex;
    justify-content: space-around;
    padding-left: 1rem;
    padding-right: 1rem;
}

.text .img{
    display: flex;
    justify-content: center;
}

.text li{
    font-size: 1.47rem;
}

.footer{
    background-color: var(--brand-color);
    width: 100%;
    height: 15rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5rem;
}

.logo-footer{
    width: 7rem;
    height: 4rem;
    border: 0.3rem solid var(--dark-color);
    color: var(--dark-color);
    font-size: 1.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Almarai', sans-serif;
}