* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /* border: 1px solid red; */
    font-weight: 300;

}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;

}
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

/* Custom Components */
.CustomButton {

    background-color: #235683;
    color: white;
    padding: 10px 60px;
    border-radius: 20px;
    margin-top: 30px;
    display: block;
    width: fit-content;
}

/* Container */
.Container {
    display: flex;
    flex-direction: column;
    background-size: contain;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;

}

.Container .LogoTextDiv {

    width: 50%;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 10px;
    margin-left: 20px;

    @media(max-width:600px) {
        margin-left: 0px;
        width: 100%;
    }
}

.Background {
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
}

.Logo {
    object-fit: cover;
}

.Container h1 {
    color: #030343;
    display: block;
}

.Container p {
    color: #030343;
    display: block;
    margin-top: 10px;
}



.Container li {
    color: white;
}