@font-face{
    font-family:'myFont';
    src:url('GlockGrotesque-Medium.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}

*{
    font-family:'myFont', sans-serf;
    color:#ddfd6e; 
    /* 3af53a */
}

#generatedLetter {
    color: black; 
}

.programFooter {
    background-color: #333;      
    color: #fff;                 
    font-size: 15px;             
    text-align: center;          
    padding: 20px;              
    position: fixed;            
    bottom: 0;                   
    width: 100%;                
    left: 0;                     
}

.programFooter p {
    margin: 0;                  
    font-size: 16px;             
    font-family: 'myFont', sans-serif; 
}

body {
    background-color: white;
    font-family:'myFont';
}

.imageSet{
    width:80px;
    height:80px;
    margin:20px;
}

.page1{
    text-align:center;
    section {
        display: flex;              
        flex-wrap: wrap;            
        justify-content: space-evenly;
        align-items: center;  
    }
    h1 {
        font-size:40px;
        margin:20px;
    }
    p {
        font-size: 25px;
        margin-bottom:30px;
    }
}

.container{
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
}

input[type="text"] {
    width: 250px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid azure;
    border-color: aliceblue;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

input[type="text"]:focus {
    border-color: aliceblue;
    box-shadow: 0 0 5px grey;
}

button{
    font-size:20px;
    background-color:#ddfd6e;
    color:black;
    border-radius:25px;
    width:110px;
    height:50px;
    padding:7px;

    box-shadow:0 8px grey;
    text-align:center;
}
button:hover{
    background-color:#e3fc89;
}
button:active{
    background-color:#ddfd6e;
    box-shadow:0 5px grey;
    transform:translateY(3px);
}