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

.navbar{
    width: 100vw;
    height:10vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}

#swot{
    width: 100vw;
    height: 100vh;
    background: linear-gradient(90deg, #0088FF, #0088FF);
}

.container{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    width: 100vw;
    height: 100vh;
    padding: 5%;
    padding-top: 7%;
    column-gap: 20px;
    row-gap: 20px;
}

.strength{
    width: 540px;
    height: 220px;
    background-color: rgb(255, 0, 0);
    border-bottom-left-radius: 70px;
    border-top-right-radius: 70px;
    box-shadow: 10px 10px 5px #0000006b ;
}

.weakness{
    width:  540px;
    height: 220px;
    background-color: rgb(191, 201, 16);
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    box-shadow: 10px 10px 5px #0000006b ;
}

.opportunities{
    width: 540px;
    height: 220px;
    background-color: rgb(75, 210, 48);
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    box-shadow: 10px 10px 5px #0000006b ;
}

.threats{
    width: 540px;
    height: 220px;
    background-color: rgb(72, 81, 255);
    border-bottom-left-radius: 70px;
    border-top-right-radius: 70px;
    box-shadow: 10px 10px 5px #0000006b ;
}

.judul1 {
    width: 100%;
    height: 25%;
    /* background-color: skyblue; */
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 30px;
    color: rgb(255, 255, 255);
    /* border-bottom: 5px solid #3ABEF9; */
}

.isi1 {
    width: 100%;
    height: 75%;
    /* background-color: aquamarine; */
}

.isi1 ol {
    padding-left: 70px;
    font-size: 14pt;
    font-weight: bold;
    color: white;
    padding-top: 10pt;
}

.judul2 {
    width: 100%;
    height: 25%;
    /* background-color: skyblue; */
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 90px;
    color: rgb(255, 255, 255);
    /* border-bottom: 5px solid #3ABEF9; */
}

.isi2 {
    width: 100%;
    height: 75%;
    /* background-color: aquamarine; */
}

.isi2 ol {
    padding-left: 70px;
    font-size: 14pt;
    font-weight: bold;
    color: white;
    padding-top: 10pt;
}