        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { font-size: 16px; }

        body{
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: url(../images/uwec_background.jpg) no-repeat center/cover;
        }       

        #container{
            width: min(1400px, 90vw);
            height: 90vh;                
            background-color: rgba(255, 255, 255, 0.9);
            border: 5px solid rgb(255, 255, 255);
            border-radius: 10px;
            overflow: hidden;
        }

        .item {
            font-size: clamp(0.9rem, 1.9vw, 1.6rem);
            line-height: 30px;
            padding: clamp(0px, 1vh, 5px);
            flex: 1 1 45%;
            min-width: 0;
            box-sizing: border-box;
            overflow-wrap: anywhere;
            word-break: break-word;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .button{
            display: block;
            margin: 20px auto;
            background-color:  rgba(49, 95, 189, 0.9);;
            width: 50%;
            height: 45px;
            border-radius: 30px;
            outline: none;
            line-height: 45px;       
            text-align: center;
            box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
            cursor: pointer;
            font-size: clamp(0.2rem, 1.9vw, 1.6rem);            
            color:  rgb(234, 218, 202);
            font-weight: 600;
            border: 2px solid rgb(16, 57, 138);
            text-decoration: none;
        }

        .button:hover{
                    border-color:  rgb(241, 170, 18);
                    box-shadow: 3px 3px 6px rgb(73, 31, 8);
                    transition: ease-in-out 0.1s;
        }

        label {
            font-weight: bold;
        }