* {
    margin: 0;
    padding: 0;
}

.section{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 500px;
    flex-direction: column;
    gap: 20px;
}

.title {
    font-size: 40px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif, Helvetica, sans-serif;
}

#select{
    font-size: 20px;
}

.content{
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: start;
}

#input{
    width: 250px;
    height: 25px;   
    border: 2px solid black;
    border-radius: 5px;
}

.button{
    width: 250px;
    height: 30px;  
    background-color: #525252;
    color: beige;
    border: 1px solid black;
    border-radius: 5px;
}