*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: var(--fnt-d);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8.5rem;
}
#Pagecontent{
    flex: 1;
    min-height: 100%;
    text-align: center;
}

.sec-w{
    width: 1600px;
    margin: auto;
    text-align: center;
    position: relative;
}

.sec-p{
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.btn{
    background-color: var(--cl-destructive);
    border-radius: 8px;
    border-width: 2px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
}

.btn:hover{
    background-color: var(--cl-tertiary);
}

h2{
    font-size: xx-large;
}

a:link {
    color: unset;
  }

  /* visited link */
  a:visited {
    color: black;
  }

@media (max-width:1600px) {
    .sec-w{
        width: 80vw;
    }
}

@media (max-width:1240px) {
    .sec-w{
        width: 900px;
    }
}

@media (max-width:940px) {
    .sec-w{
        width: 90vw;
    }
}
