body{
    margin: 0;
    padding: 0;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(4,0,255);
    background: -moz-radial-gradient(circle, rgba(4,0,255,1) 0%, rgba(100,134,255,1) 86%, rgba(4,0,255,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(4,0,255,1) 0%, rgba(100,134,255,1) 86%, rgba(4,0,255,1) 100%);
    background: radial-gradient(circle, rgba(4,0,255,1) 0%, rgba(100,134,255,1) 86%, rgba(4,0,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0400ff",endColorstr="#0400ff",GradientType=1);
}
#outerContainer{
    margin: 0;
    padding: 1em;
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(45deg, lightblue,aqua);
    border-radius: 20px;
    box-shadow: 0 0 10px teal;
}
.buttonContainer{
    width: 40vh;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px;
    box-shadow: 0 0 0 white;
    transition: all 0.3s ease-out;
}
.buttonContainer:hover{
    width: 50vh;
    height: 50vh;
    box-shadow: 0 0 15px white;
}
#batorDelfinek{
    background-image: url("./pics/ft-logo.jpg");
}
#balogGyorgyi{
    background-image: url("./pics/bgy-logo-updated.png");
}