body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;

    background-color: rgb(150, 0, 24);
    font-family: 'Monsterrat';

    cursor:default;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* Starsze wersje Edge i IE */
    user-select: none;         /* Standardowa składnia (Chrome, Firefox, Opera) */
}
.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40em;
    height: 35em;

    min-height: 60vh;

    border-radius: 20px;
    border: 3px solid rgb(32, 32, 36);
    background-color: rgb(0, 0, 0);
}
a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 20px;
    background-color: rgb(19, 19, 19);
    color: aliceblue;
    font-size: 3em;
    font-family: 'Montserrat';
    padding: 12px 26px;
    margin-top: 3vh;
    text-decoration: none;
    margin-bottom: 0.4em;
}
a:hover{
    cursor: pointer;
    color: rgba(240, 248, 255, 0.521);
}
a:active {
    transform: translateY(10px);
    color:rgb(150, 0, 24);
}
h2{
    font-family: 'Montserrat';
    color: aliceblue;
    margin:0;
}
h2:hover{
    color:rgb(150, 0, 24);
}
iframe{
    margin-bottom: auto;
    border-radius: 12px;
    width: 600px;
    height: 400px;
}