/* GENERAL */
html {
    margin: -10px;
    padding: -10px;
    scroll-behavior: smooth;
}

body {
    background-color:  #fbce51;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serifS;
    overflow-x: hidden;
    height: max-content;
}
::-webkit-scrollbar {
    background-color: #3e3e3c;
    box-shadow: inset 0px 0px 5px #1a2020;
}

::-webkit-scrollbar-thumb {
    background-color: #ffef5b;
}

::-webkit-scrollbar-thumb:hover{
    background-color: #fce205;
}

/* HEADER */

.navbar {
    background-color: #1f2626;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center ;
    box-shadow: 1px 1px 8px rgb(52, 52, 52);
}
h1 {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fbce51;
    text-shadow: 2px 2px #595956;
    font-size: 35px;
    margin-left: 0;
    padding: 0;
}

.logo-img {
    scale: 20%;
    margin: 0;
    padding: 0;
}

/* CONTENT / MAIN */
.welcome-line {
    text-align: center;
    text-shadow: 1px 1px #757571;
}

#welcome-line1 {
    font-size: 50px;
    margin-top: 5%;
}

#welcome-line2 {
    font-size: 25px;
    margin-bottom: 10%;
}

b{
    font-size: 27px;
}
.choose-line {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 40px;
    margin-top: 15%;
    font-weight: bolder;
}

.triangle {
    margin-top: 15%;
    background-color: #1f2626;
    font-size: 30px;
    padding: 5px 30px 5px 30px;
    color: #f7b603;
    text-align: center;
    box-shadow: 2px 2px 8px #1f2626;
    font-weight: bold;
}

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

.image-container {
    margin-top: 5%;
    margin-bottom: 5%;
}

img {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(3px 3px 4px gray);
}

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

.inputs {
    margin: 0px 50px 0px 50px;
    border-radius: 5px;
    scale: 150%;
}

.input-labels {
    font-size: 25px;
    font-weight: bold;
}

.result {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    font-size: 35px;
    font-weight: bold;
}

/* BUTTON */
.buttons {
    text-decoration: none;
    padding: 8px;
    transform: translateY(5px);
    font-size: 30px;
    color: #fce205;
    font-weight: bolder;
    border-radius: 5px;
    transition: .2s ease-out;
    background-color: #3e3e3c;
    box-shadow: 0px 2px  #1f2626;
}

.buttons:hover {
    background-color: #0d0d0d;
    border-radius: 5px;
    transition: .3s ease-in;
    font-size: 35px;
    
}
.selection-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translateY(100px);
}

#aot-button {
    padding: 8px 75px 8px 75px;
}

.result-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
}

#up-button {
    display: none;
    position: fixed;
    bottom: 30px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    background-color: #3e3e3c;
    color: #fce205;
    border: none;
    padding: 10px 15px 10px 15px;
    font-size: 20px;
    cursor: pointer;
    scale: 150%;
}

/* FOOTER */

.footer {
    background-color: #1f2626;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    box-shadow: 1px 1px 8px rgb(52, 52, 52);
    margin-bottom: -10px;
    padding: 0;
    margin-top: 10%;
    color: #fce205;
    text-align: center;
}