@font-face {
    font-family: 'Ubuntu_regular';
    src: url('/proba/public/fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body{
    height: 100%;
    margin: 0px;
}
body {
      margin: 5px;
      font-family: 'Ubuntu_regular', sans-serif;
      background: linear-gradient(180deg, #b7adcf, #39678d);
	  background-repeat: no-repeat;
      background-attachment: fixed;
    }
    header{
        text-align: center;
        padding: 10px;
    }
    footer{
        margin-top: auto;
        text-align: center;
        padding: 10px;
    }
    #container{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    #contact{
        display: flex;
        flex-direction: row;
        padding: 5px;
    }
    .Link{
        flex: 1;
        padding: 5px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .Link button{   
        margin-top: 1rem;
        padding: 0.9rem 1.6rem;
        border: 3px solid rgba(255,255,255,0.4);
        border-radius: 24px;
        cursor: pointer;
        background: rgba(255,255,255,0.2);
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
        backdrop-filter: blur(8px);   /* üveges effekt */
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: all 0.25s ease;
    }
    .Link button:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.05);
    }
    .Link p{
        padding: 0.5rem 1rem;
        background-color: rgba(255,255,255,0.2);
        border-radius: 1rem;
        line-height: 1.6;
        font-family: "Ubuntu_regular", sans-serif;
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.3px;
        color: white;
    }
    #info{
        padding: 5px;
        display: flex;
        flex-direction: row;
    }
    .box{
        margin: 5px;
        padding: 0.5rem 1rem;
        background-color: rgba(255,255,255,0.2);
        border-radius: 1rem;
        line-height: 1.6;
        font-family: "Ubuntu_regular", sans-serif;
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.3px;
        color: white;
        text-align: center;
        flex: 1 ;
    }
    #kep{
        height: auto;
        max-width: 100%;
        margin: 15px 5px 5px 5px;
    }
    #message{
        flex: 1;
        padding: 5px;
        color: white;
        font-family: "Ubuntu_regular", sans-serif;
        background-color: transparent;
    }