@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
a {
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Roboto, sans-serif;
}


.header {
    margin: 12px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.indexlogo {
    width: 70px;
    height: 70px;
    margin-left: 50px;
}

.links {
    display: flex;
    list-style-type: none;
    padding: 12px;
    gap: 12px;
    margin-right: 50px;


}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    min-height: 10px;
}


.main {
    display: flex;
    justify-content: center;
}

.maininfo {
    margin: 40px;
}

.mainimage {
    height: 200px;
    width: 400px;
    margin: 40px;
}

.information {
    display: flex;
    justify-content: center;
    font-size: 26px;
    margin: 20px;
}

button {
    padding: 8px 20px;
    font-family: Roboto, sans-serif;
    border: none;
    border-radius: 8px;
    background: red;
}

.infoimages {
    width: 250px;
    height: 150px;
    margin: 10px;
    border: 3px solid black;
}

.infotext {
    margin-left: 10px;
    width: 200px;
    word-wrap: break-word;
}
.container {
    display: flex;
    justify-content: center;
}

.quote {
    display: flex;
    justify-content: center;
    padding: 50px;
    margin: 50px;
    text-align: right;
}

.quoter {
    display: flex;
    margin: 35px;
}

.sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #149bf6;
    padding: 32px;
    margin: 50px 400px 50px 400px;
}
.sign-up button {
    border: 2px solid #a30909;
    flex: 0 1 auto;
    width: 100px;
    margin-left: 50px;
}

button:hover {
    background-color: pink;
    color: black
}

.text {
    font-size: 20px;
}

.smalltext {
    font-size: 16px;
}

.body {
    background-color: aliceblue;
}