.header{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    border-bottom: solid black 11px;
}
.container{
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    box-sizing: border-box;
}
.element{
    margin: 50px;
    width: 500px;
    height: 400px;
    background-color: #5a9271;
    border-radius: 50px;
    border: solid 5px black;
    text-align: center;
}

p{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}