@font-face {
    font-family: "Lemonmilk";
    src: url("lemon.otf");
}

h1 {
    font-size: 4em;
    color: #fff;
    font-family: Lemonmilk;
}

*{

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: padding-box;

}

p {
    font-size: 2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    hyphens: auto; 
	text-align: justify;
	text-align-last: none;
    color: #ffffff;
}

img {
    width: 100%;
}


body {
    background-image: url("bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2d545e;
    background-attachment: fixed;
    position: relative;

}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('bg.jpg') center/cover no-repeat;
    z-index: -1;
  }

.wrapper {
    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 100px;
    text-align: center;


    flex-direction: column;
}

.content {

    max-width: 80%;

}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Optional: to center the buttons horizontally */
    margin:20px; /* Optional: to create some space between the buttons */
    width: 80%;

}

.button {
    width: 100%;
    height: 100px;
    margin: 10px;
    font-size: 2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px;
    border: 1px solid white;
    color: #ffffff;
    background-color: rgb(45 84 94 / 59%);
    line-height: 100px;
    text-decoration: none;
}