

#wobblylines {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}


::-webkit-scrollbar {
  width: 0px;
}

a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
    text-decoration: none;
}

p {
    color: #b70000;
    font-size: 20px;
    line-height: 2;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    margin-left: 20px;
    color: #3cb5e0;
    font-family: Arial, Helvetica, sans-serif;
}

h2 { /*BIGGUS TITLUS*/
    color: #1d94c0;
    font-family: Arial, Helvetica, sans-serif;

    font-size: 90px;
}

h3 {
    color: #b70000;
    font-family: Arial, Helvetica, sans-serif;

    font-size: 30px;
}

.red { /*red for specific words*/
    color: #b70000;
}

.blue {
    color: #1d94c0;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
    margin-bottom: 50px;
}

.wrapper {
    text-align: center;
    margin-right: 15%;
    margin-bottom: 300px;
}


.information {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 300px;
    margin-right: 300px;
    margin-bottom: 80px;
}

.mailbox {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-bottom: 200px;
}

.smallbox input {
    width: 25%;
    padding: 15px;
    margin: 10px;
    box-sizing: border-box;
    border: 2px solid #b70000;
    border-radius: 8px;
}

.bigbox textarea {
    width: 30%;
    padding: 15px;
    padding-bottom: 150px;
    margin: 10px;
    box-sizing: border-box;
    border: 2px solid #b70000;
    border-radius: 8px;
}


button {
    background-color: rgb(228, 0, 0);
    box-shadow: 0px 10px #1d94c0;
    border: none;
    color: white;
    padding: 30px 42px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 40px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.send-mail-btn {
    background-color: #b70000;
    border: none;
    box-shadow: none;
    color: white;
    padding: 20px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.slideshow {
    width: 65%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;

    position: relative;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide {
    display: none;
}

.prev, .next {
    color: #b70000;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;

    position: absolute;
}

.next {
  right: 0;
  margin-right: 25px;
}

.prev {
    left: 0;
    margin-left: 25px;
} 