* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #A7C7E7;
    text-shadow: black 0 0 10px;
    background-color: hsla(0, 0%, 0%, 0.94);
}
#appWrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    max-width: 800px;
    margin-top: 5%;
    gap: 1rem;
    padding: 3rem;
}
input, label {
    text-align: center;
    padding: 1.5rem;
    font-weight: bold;
    text-transform: capitalize;
}
label {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: #000000 1px 1px;
}
input, #submitBtn, #goBack {
    display: none;
    width: 50%;
    align-self: center;
}
p {
    display: flex;
    justify-content: center;
    text-shadow: #000000 1px 1px;
}
.header {
    background-color: #000000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-shadow: #A7C7E7 -5px -5px 20px;
}
.headerRight {
    display: flex;
    gap: 3rem;
}
.headerRight a {
    display: flex;
    align-self: center;
}
.footer {
    background-color: #090C08;
    display: flex;
    flex-wrap: wrap;
    padding: .5rem 2rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: #A7C7E7 5px 5px 20px;
}
.footerRight {
    display: flex;
    gap: 1rem;
    font-size: 10px;
}
.wrap {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.app {
    display: flex;
    flex-direction: column;
    flex: 1;
}
a {
    text-decoration: none;
    color: #A7C7E7;
}
a:hover {
    opacity: .6;
    cursor: pointer;
}
#darkModeBtn {
    background-color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    box-shadow: #A7C7E7 0 0 20px;
}
#darkModeBtn:hover {
    opacity: .6;
    cursor: pointer;
}
#moonIcon {
    width: 20px;
}    
.dropDown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    width: 210px;
}
.select {
    text-align: center;
    font-size: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 5px;
    width: 300px;
    padding: .2rem 0;
}
#selection {
    padding: .5rem 0;
    margin-bottom: 1rem;
    background-color: #4e4d4d57;
}
#selection:hover, .option:hover {
    cursor: pointer;
    background-color: #000000;
}
#selection:hover {
    box-shadow: #A7C7E7 0 0 10px;
}
.option {
    display: none;
    border-radius: 5px;
    width: 280px;
    font-size: 1.2rem;
}
.options {
    background-color: #4e4d4d57;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: .5rem 0;
}
h1 {
    letter-spacing: 2px;
}
#degreeInput {
    border-radius: 5px;
    border: none;
    background-color: #00000052;
    font-size: 1.5rem;
}
.buttons {
    display: flex;
    width: 250px;
    gap: .2rem;
}
.btn {
    border-radius: 5px;
    border: none;
    padding: .4rem;
    background-color: #00000075;
    font-weight: bold;
}
.btn:hover {
    cursor: pointer;
    background-color: #00000090;
}
input::placeholder {
    color: #000000;
}
#message {
    font-size: 1.3rem;
    text-align: center;
}
@media (max-width: 425px) {
    body {
        font-size: 0.9rem;
        text-align: center;
    }
    .header, .footer {
        padding: 1rem;
    }
    .header {
        flex-direction: column;
    }
    .headerRight {
        display: none;
    }
    .footer {
        flex-direction: column;
    }
    .footerRight {
        font-size: 8px;
        margin-top: 10px;
    }
    label {
        font-size: 2rem;
    }
    #appWrapper {
        width: 100%;
        padding: 2rem;
    }
    #degreeInput {
        font-size: .6rem;
    }
    #message {
        font-size: .9rem;
    }
}
