*{
    box-sizing: border-box;
}
body{
    background-color: #262626;
}
.kontejner{
    max-width: 800px;
    max-height: 500px;
    background-color: #D95A4E;
    margin: auto;
    text-align: center;
    margin-top: 50px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100px;
    box-shadow: 2px 5px 10px 10px; 
    flex-wrap: wrap;
}
h1{
    font-size: 60px;
}
.kontejner:hover{
    transform: scale(1.05);
    transition: 1s;
}

input{
    width: 300px;
    height: 50px;
    text-align: center;
    border-radius: 80px;
    box-shadow: 2px 5px 10px 2px;
}
input:hover{
    transform: scale(1.05);
    transition: 1s;
}
#link{
    width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: 80px;
    background-color: #D95A4E;
    margin: auto;
    margin-top: 100px;
    box-shadow: 2px 5px 10px 2px;
}
a{
    text-decoration: none;
    color: black;
    font-size: x-large;
}
#link:hover{
    transform: scale(1.05);
    transition: 1s;
}