@font-face {
    font-family: "Agustina";
    src: url(../Fonts/agustina.woff);
}

@font-face {
  font-family: 'Poppins';
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2) format('woff2');
  font-display: swap;
}

* {
    margin: 0;
}

body {
    background-image: url(../Images/background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -moz-window-dragging: none;
    cursor: none;
}

.header {
    display: flex;
    height: 82px;
    box-shadow: 0 0 5px 0;
    backdrop-filter: blur(8px);
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    cursor: none;
    line-height: inherit;
    white-space: nowrap;
    font-family: Agustina;
    font-size: 30px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 19px;
    padding-top: 5px;
}

.nav-link-box {
    display: flex;
    width: 100%;
    justify-content: end;
    padding: 0px 18px 0px 18px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins";
    text-decoration: none;
    cursor: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0px 0px 0px 30px;
}

.stupid-switch {
    -webkit-appearance: none;
    position: relative;
    cursor: none;
    width: 100px;
    height: 40px;
    background-image: url(../Images/light_mode.webp);
    background-size: cover;
    border-radius: 50px;
    outline: none;
    transition: background-image 0.9s;
    box-shadow: 0px 2px 5px 1px gray;
    margin-left: 30px;
}
 
.stupid-switch:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    background-color: navy;
    border-radius: 50px;
    transition: all 0.9s;
    background-color: #f7ca33;
}

.stupid-switch:checked {
    background-image: url(../Images/dark_mode.webp);
    transition: background-image 0.9s;
    box-shadow: 0px 2px 5px 1px rgb(187, 134, 201);
}
 
.stupid-switch:checked:before {
    transform: translate(150%);
    transition: all 0.9s;
    background-color: #bb86fc;
}

.home {
    display: flex;
    height: 100vh;
}

.rounded-circle {
    aspect-ratio: auto 200 / 200;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    border-radius: 50%!important;

}