:root {
    --light: rgb(212, 212, 212);
    --light-blue: #1C398E;
    --button-light-blue: #00B8DB;
    --button-dark-blue: #155DFC;
    --dark-blue: #162456;
}

html {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    padding-top: 50px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 50px;
    background-image: linear-gradient(to bottom right, var(--light-blue), black);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--light);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 70px;
}

h2,
h3,
p {
    margin: unset;
}

h2 {
    font-size: 40px;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    font-weight: normal;
}

p {
    font-size: 18px;
}

.redirect-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.description {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.description p {
    word-wrap: break-word;
}

.tile-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.tile {
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.arrow-box {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light);
    color: var(--light-blue);
    border-radius: 80px;
}

.logo-box {
    width: 200px;
    height: 180px;
    background-color: var(--light);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 160px;
}

.link-container-small {
    display: none;
}

.redirect-button {
    height: 40px;
    width: 400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-image: linear-gradient(to bottom right, var(--button-light-blue), var(--button-dark-blue));
    color: var(--light);
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 900px) {
    .tile-container {
        flex-direction: column;
    }
    .arrow-box {
        transform: rotate(90deg);
    }
    .redirect-button {
        height: unset;
        width: 250px;
        padding: 10px 15px;
        word-wrap: break-word;
    }
}
