html{
    height: 100%;
}

body {
    /* Remove default margin and padding of the body*/
    margin: 0;
    padding: 0;

    background-position: center center;/* Background image is centered vertically and horizontally at all times */
    background-repeat: no-repeat; /* Background image doesn’t tile */
    background-attachment: fixed; /* Background image is fixed in the viewport so that it doesn’t move when the content’s height is greater than the image’s height */
    background-size: cover; /* This is what makes the background image rescale based on the container’s size */
    background-color: #464646; /* Set a background color that will be displayed while the background image is loading */ 
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('../Images/hero_bg.jpg');
}

span{
    color: white;
}

ul{
    /* Remove default dot styling list and default list space */
    list-style-type:none;
    padding-inline-start: 0px;
}

.center-col {
    display: flex;
    align-items: center;
    flex-direction: column;
    height:100%; 
    margin-top:0px;
}

.maincard{
    /* margin-top: 0.5%; */
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    width: 36rem;
    height: fit-content;
    text-align: center;
    /* padding: 15px; */
    /*background-color: white;*/
    /*backdrop-filter: blur(4px);*/
}

.button {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    /*color: #000;*/
    color:white;
    font-weight: bold;
    line-height: 25px;
    margin: 5px;
    border-style: solid;
    text-decoration: none;
    /*border-color: white;*/
}

.button:hover {
    color:#356B63;
    border-color: #356B63;
    /*color: #3cb096;
    border-color: #3cb096;*/
}


.logo{
    margin-bottom: 2rem;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    /*background-color:white ;*/
    padding: 0.5rem;
    backdrop-filter: blur(4px);
}

/* Update content if screen height is lower than 929px */
@media screen and ( max-height: 928px ) {
    .logo {
        margin-bottom: 0;
    }
    .maincard{
        width: 28rem;
    }
    ul{
        margin: 0;
    }
}
