
a:hover {
    text-decoration: underline;
}

#shutter-content {
    padding: 28px 30px 28px 30px;
}
#shutter-flex {
    display: flex;
    gap: 10%;
}
#shutter-flex > div {
    flex: 1.5;
}
#shutter-flex > div:last-child {
    flex: 1;
}
.shutter-text > p {
    padding-bottom: 30px;
}
.shutter-text > p:last-child {
    padding-bottom: 0;
}
#shutter-image-mobile {
    display: none;
}
.shutter-image {
    width: 100%;
}
/* media queries */
@media (max-width: 430px) {
    #shutter-image-desktop {
        display: none;
    }
    #shutter-image-mobile {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
    #shutter-flex {
        flex-direction: column;
        height: 80svh;
        overflow: scroll;
        gap: 0;
    }
    #shutter-flex > div {
        flex: 1;
    }
    .shutter-text:first-child {
        padding-bottom: 30px;
    }
    a {
        text-decoration: underline;
    }
}
