.main {
    max-width: 300px;
    min-width: 300px;
    max-height: 360px;
    min-height: 360px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    box-shadow: 8px 8px 10px rgba(9, 255, 0, 0.329);
    border: none;
}

body {
    font-family: 'Inconsolata', monospace;
}

.scaled-image {
    width: 20%;
    transition: all 0.3s ease;
}

.scaled-image:hover {
    transform: scale(110%);
}

.smallest-text {
    font-weight: 100;
    font-size: smaller;
    font-stretch: extra-expanded;
}

.small-text {
    font-weight: 400;
}

.email {
    color: #000; 
    font-family: 'Inconsolata', monospace;
    background-color: #FFF; 
    border: 1px solid #FFF;  
    box-shadow: 1px 3px 5px #15ff004f; 
    padding: 6px;
    padding-bottom: 5%;
    padding-top: 5%;
    height: 0px; /* Adjust the height as needed */
    transition: all 0.2s ease;
}

.email::placeholder {
    padding-left: 1%;
    line-height: 30px; /* Match the height for vertical alignment */
}

.email:hover{
    border-radius: 3px;
}

.email:focus {
    outline: none;
    border-radius: 3px;

}

.button{
    margin-top: 5%;
    min-width: 100px;
    min-height: 35px;
    background-color: rgb(17, 17, 17);
    color: grey;
    font-family: 'Inconsolata', monospace;
    font-weight: 100;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.button:hover{
    transform: scale(110%);
    color: rgba(9, 255, 0, 0.541);
    border-radius: 3px;
    box-shadow: 0px 0px 10px #15ff00be;
}

.button:active{
    transform: scale(0.95);
}
