@font-face {
    font-family: ME;
    src: url(MonumentExtended-FreeForPersonalUse/MonumentExtended-Ultrabold.otf);
}

body{
    text-align: center;
    color: white;
    background-color: rgb(27, 27, 27);
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
}

h1{
    font-size: clamp(40px, 3vw, 75px);
}

h2{
    font-size: clamp(25px, 3vw, 50px);
}

h3{
    font-size: clamp(35px, 3vw, 60px);
}

p{
    font-size: clamp(25px, 2vw, 35px);
    padding-left: 100px;
    padding-right: 100px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
}

.navbar a {
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none;
    color: white;
    font-size: clamp(20px, 3vw, 30px);
}

.text-courgetland {
    font-size: clamp(20px, 3vw, 30px);
}

section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.hr-center {
    border: none;
    border-top: 1px solid;
    margin-left: 100px auto;
    margin-right: 100px auto;
    width: 50%;
}

.mini-hr-center {
    border: none;
    border-top: 1px solid;
    margin-left: 100px auto;
    margin-right: 100px auto;
    width: 25%;
}

.center-div{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pw{
    color: white;
    width: 500px;
    height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    border: 3px solid red;
    border-radius: 25px;
    font-size: 25px;
}

input{
    margin-top: 25px;
    margin-bottom: 25px;
}

.project_card{
    background-color: rgb(19, 19, 19);
    border-radius: 80px;
    margin: 20px;
    padding: 5px;
}

.project_tags{
    display: flex;
    justify-content: center;
    align-items: center;
}

.redtag, .greentag, .bluetag{
    font-size: clamp(20px, 3vw, 35px);
    margin-left: clamp(15px, 2vw, 50px);
    margin-right: clamp(15px, 2vw, 50px);
    padding: 15px;
    border-radius: 60px;
}

.redtag{
    background-color: red;
}

.greentag{
    background-color: green;
}

.bluetag{
    background-color: rgb(0, 145, 255);
}

a{
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none;
    color: white;
    font-size: clamp(20px, 3vw, 30px);
}

.redbtn{
    color: red;
    text-decoration: underline;
    font-size: clamp(25px, 3vw, 35px);
}

.a-in-p{
    color: red;
    text-decoration: underline;
    font-size: clamp(25px, 3vw, 35px);
    padding: 0;
}

.mini-logo-whitebg{
    width: 100px;
    height: auto;
    padding: 25px;
    background-color: white;
    border-radius: 25px;
}

.schz-sect{
    background-color: red;
    border-radius: 100px;
    font-family: ME;
    width: 80%;
    margin: auto;
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.schz-sect:hover{
    transform: scale(1.1);
    width: 100%;
    border-radius: 0;
    padding-bottom: 100px;
    padding-top: 100px;
}