* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: blue;
    gap: 15px;
    flex-wrap: wrap;
}

.letter{
    border: 1px solid aquamarine;
    border-radius: 15px;
    width: 100px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

#form_cont{
    width: 100%;
    
}

#form_cont #form{
    color: white;
    border: 3px solid beige;
    width: 500px;
    height: 100px;
    margin: 0 auto;
}

#msg_cont{
    position: absolute;
    top: 5%;
}

#msg_cont p{
    color: white;
    font-size: 25px;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 20px;
}

#msg_cont .error{
    background-color: red;
}

#msg_cont .success{
    background-color: green;
}

#msg_cont .warning{
    background-color: gold;
}

#history{
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: white;
    font-size: 25px;
}