@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
:root {
    --ColMagma: #EC4103;
    --ColBedrock: #121212;
    --ColBedrocklight: #202020;
}

body{
    background-color: var(--ColBedrock);
    color: var(--ColMagma);
    font-family: "Varela Round", sans-serif;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
}
hr{
    height: 5px;
    width: 100%;
    border: none;
    background-color: #303030;
    border-radius: 2px;

}
a:link {
    color: #00AAD0;
}
a:visited {
    color: #C32CFF;
}

.header_icon{
    display: flex;
    justify-content: center;
    font-family: 'Material Symbols Outlined', serif;
    font-size: 80px;
    width: 80px;
    margin: 0 10px;
    background-color: transparent;
    color: var(--ColMagma);
    border: none;
}
.header_icon:hover{
    cursor: pointer;
}
.header_icon_group{
    display: flex;
    flex-direction: row;
    margin: 0 30px;
}
.upload_icon{
    font-family: 'Material Symbols Outlined', serif;
    font-size: 140px;
    font-variation-settings:
            'FILL' 0;
}
.title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    width: 100%;
    background-color: var(--ColBedrocklight);
}
.description{
    font-size: 22px;
    color: white;
    width: 80%;
    text-align: center;
    margin: 30px 0;
}
.upload{
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.upload_rect{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid var(--ColMagma);
    border-radius: 30px;
    width: 400px;
    height: 400px;
    user-select: none;
}
.upload_rect.dragover{
    border-color: #FF6B36;
    box-shadow: 0 0 25px var(--ColMagma);
}
.main_container{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: 100px;
}
.preview{
    display: flex;
    justify-content: center;
    width: 50%;
}
.preview_border{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;

    border: 5px solid var(--ColMagma);
    border-radius: 30px;
}
.prev_img{
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 20px;
    color: white;

    image-rendering: pixelated;

    font-size: 30px;
}
.inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.inputbox{
    width: 500px;
    height: 60px;
    color: white;
    background-color: var(--ColBedrocklight);
    margin: 20px;
    outline: none;
    padding: 0 10px;

    border: 5px solid var(--ColMagma);
    border-radius: 20px;

    font-size: 30px;
    font-family: "Varela Round", sans-serif;
}
.inputbox:focus{
    border-color: #FF6B36;
    box-shadow: 0 0 25px var(--ColMagma);
}
.button{
    width: 530px;
    height: 70px;
    color: white;
    background-color: var(--ColBedrocklight);
    margin: 20px;
    outline: none;

    border: 5px solid var(--ColMagma);
    border-radius: 20px;

    font-size: 30px;
    font-family: "Varela Round", sans-serif;
}
.button:hover{
    border-color: #FF6B36;
    box-shadow: 0 0 25px var(--ColMagma);
    cursor: pointer;
}
.palette_icon{
    font-family: 'Material Symbols Outlined', serif;
    font-size: 140px;
}
.small_icons{
    font-family: 'Material Symbols Outlined', serif;
    font-size: 30px;
    font-variation-settings:
            'FILL' 0;
}
.help_main_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}
.help_paragraph{
    color: white;
    font-size: 20px;
    margin: 5px 20px;
    text-align: justify;
}
.help_title{
    margin: 5px;
    margin-top: 50px;
}
