@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: Montserrat, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('addons/resolvet_background.png');
    background-size: cover; 
    background-position: center 90%;
    overflow-x: hidden;
}

.header {
    padding-left: 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title{
    flex: 1;
}

.container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}


.card {
    margin: 10px;
    padding: 10px;
}

.card-content {
    display: flex;
    height: 80%;

    padding: 20px;

    border-radius: 20px;
    background: rgba(217, 217, 217, 0.20);
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    margin-bottom: 0.3vw;
    align-items: flex-start;
    gap: 3em;

}

.card-title{
    color: #0A4E66;
    font-size: 1.5vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin: 1vh 0;
}

.card-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-left: 20px;

    max-width: 12vw;
}

.card-column:hover {
    filter: hue-rotate(20deg);
    transform: scale(1.02);
}

.card-column-icon {
    margin-bottom: 8%;
    width: 4vw;
    min-width: 50px;
    height: auto;
    flex-shrink: 0;
}

.wivetix-logo {
    width: 20vw;
    height: auto;
    float: left;
    margin-right: 3%;
    margin-top: 2%;
}

.main-title{
    margin: 0;
    color: #0A4E66;
    font-size: 4vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.welcome-title{
    margin: 0;
    padding-left: 1%;
    color: #44BBA4;
    font-family: Montserrat;
    font-size: 2vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-column-title{
    color: #0A4E66;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin: 10px;
}

.choice-example {
    color: #0A4E66;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#incident-text {
    font-size: 1vw;
    font-weight: 600;
    color: #FA6161;
    padding: 0 1vw;
    margin: 0;
    display: inline-block;
    white-space: pre-wrap;
}

#easter-egg {
    display: none;
    position: fixed;
    top: 40%;
    left: 70%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1000px) {
    .main-title{
        font-size: 45px;
    }

    .welcome-title{
        font-size: 30px;
    }

    #incident-text {
        font-size: 20px;
    }

    .container {
        width: 100%;
    }

    .card-column{
        max-width: 40vw;
    }

    .title{
        display: flex;
        flex-direction: column;
    }

    .card-title{
        font-size: 24px;
    }
}

@media only screen and (max-width: 550px) {
    .wivetix-logo {
        display: none;
    }
}