* {
    box-sizing: border-box;
}

/* Large rounded black border */
hr.new {
    border: 2px solid darkgrey;
    border-radius: 3px;
    width: 60%;
  }

.img-container {
    float: left;
    width: 50%;
    padding-left: 120px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.image_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    border-radius: 10%;
}

.icon_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 25%;
    max-height: 25%;
}

.home_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
    max-height: 75%;
    border-radius: 25px;
}

.container {
    /* border: 1px solid black; */
    height: 200px;
    text-align: center;
}

.title {
    text-align: center;
    color: #4f5052;
    font-weight: bold;
    font-size: medium;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: white;
    text-align: center;
}

.footer-logo {
    font-size: large;
    color: black;
}

body {
    text-align: center;
}

h1 {
    text-align: center;
}

p {
    text-align: center;
    font-style: normal;
    color: #4f5052;
    padding-left: 20%;
    padding-right: 20%;
}

form {
    display: inline-block;
    /* padding-left: 50px; */
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; vh stands for viewport height */
}
  
/* form {
    width: 50%; /* adjust this value to control the form's width */
} */

strong {
    text-align: left;
    padding-left: 50px;
}

#horizontal-rule {
    width: 30%;
    color: darkgray;
}

div.listContainer {
    text-align: center;
}
  
ul.myUL {
    display: inline-block;
    text-align: left;
    font-size: large;
}

div.mycontainer {
    width: 100%;
    overflow: auto;
}

div.mycontainer div {
    width:33%;
    float: left;
}

div.mycontainertwo {
    width: 100%;
    overflow: auto;
}

div.mycontainertwo div {
    width:50%;
    float: left;
}

div.inline {
    float: left;
    padding-right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}