/*
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
} */
:root {
    --weak-color: #fc8181;
    --medium-color: #fbd38d;
    --strong-color: #68d391;
}
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: none;
    font-family: "Roboto";
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    border: none;
    color: aliceblue;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
}
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    background: linear-gradient(25deg, #0b366e, #dd5510);
    z-index: -1;
}
header {
    margin: 0;
    padding: 0;
    min-width: 100%;
    max-height: 31px;
    border: none;
    flex-shrink: 0;
}
footer {
    margin: 0;
    padding: 0;
    border: none;
    justify-content: flex-end;
    flex-shrink: 0;
}
iframe {
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
    flex: 1;
}
button {
    margin: 0;
    padding: 1px 6px;
    height: 100%;
    font-weight: normal;
    cursor: pointer;
}
button:disabled {
    opacity: 1;
    border: 0;
    padding: 3px 8px;
    border: none;
    background: transparent;
    background-color: transparent;
    color: aliceblue;
    cursor: default;
    opacity: 1;
}
div {
    margin: 0;
    padding: 0;
    border: none;
}
.div2 {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: flex;
    flex: 1;
    flex-direction: column;
}
p{
    margin: 0;
    padding: 0;
    border: none;
}
ul {
    margin: 0;
    padding: 25px;
    border: none;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
li {
    margin: 0;
    padding: 0;
    border: none;
    width: max-content;
    height: max-content;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
audio {
    margin: 0;
    padding: 0;
    border: none;
    height: 25px;
    min-width: 375px;
}
img{
    margin: 0;
    padding: 0;
    border-radius: 10px;
    display: block;
}
img.no-style {
  all: unset;
}
.website {
    margin: 0;
    padding: 0;
    max-width: 150px;
    min-width: 20px;
    max-height: 41px;
    border: none;
}
.container {
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100vh - 81px);
    border: none;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.container[style*="flex-direction: row"] {
    flex-direction: row;
    height: calc(100vh - 93px);
}
.border {
    margin: 0;
    padding: 0;
    border: none;
    color: aliceblue;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: none;
}
#bmain6:disabled {
    margin: 0;
    padding: 0;
    color: #f0f8ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: none;
}
.b {
    margin: 0;
    padding: 5px;
    border: none;
    color: aliceblue;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.b .l {
    text-align: left;
}
.b .r {
    text-align: right;
}
.center {
    margin: 5px;
    padding: 5px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
* {
    box-sizing: border-box;
}
.thumbnail {
    width: 250px;
    height: 250px;
    border: none;
}
.full {
    width: 100%;
}
/*Calculator*/
.cbase {
    margin: 0;
    padding: 0px 5px 5px 5px;
    border: none;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center ;
    text-align: center;
}
.cbtn {
    margin: 5px;
    padding: 0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    box-shadow: 0 2.5px 5px rgba(0,0,0,0.5);
    font-weight: bold;
}
.cbtn:hover {
    transform: translateY(0px);
}
.cbtn:active {
    transform: translateY(5px);
}
/*Color Palette Generator*/
.color-box {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
.color-box:hover {
    transform: translateY(-15px);
}
.color-box:active {
    transform: translateY(0px);
}
.color {
    height: 182.5px;
    cursor: pointer;
}
.hex-value {
    display: flex;
    justify-content: center;
}
/*Password Generator*/
#password {
    padding: 0;
    margin: 0;
    border: none;
    color: aliceblue;
    background: transparent;
}
.strength-meter {
    height: 10px;
    border-radius: 5px;
    margin: 5px 5px 15px 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}
.strength-bar {
    height: 100%;
    width: 0%;
    min-width: 5%;
    background-color: var(--weak-color);
    transition: all 0.3s ease;
    border-radius: 5px;
}
/*Get in touch*/
.message-field {
    width: 100%;
    max-width: 200%;
    height: 250px;
    resize: none;
}