.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1em;
}

.btn {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.1rem;    
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 0.3em 0.6em;
    border: none;
}

.btn:hover{
    background-color: #2c3e50;
    color: #ecf0f1;
    cursor: pointer;    
}

.link{
    text-decoration: none;
    color: #2980b9;
    transition: color 0.3s ease;
}