/* default */
:root{
  --bg-color: rgb(255, 255, 255);
  --text-color: rgb(243, 237, 237);
  --orange: rgb(233, 174, 66);
}

@font-face {
    font-family: "Open Sans";
    src: url("intern/font/OpenSans-Light.ttf");
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.responsitive {
    max-width: 100%;
}

/* end default */

body{
    background-image: url('bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    

}
#container{
    background-color: var(--bg-color);
    width: 100%;
    max-width: 1200px;
    padding: 4rem;
    margin:5rem auto;
    border-radius: 1rem;
    opacity: 0.85;
}

h1{
    border-left: 0.2rem solid var(--orange);
    padding: 1rem 2.3rem;
    font-size: 3rem;
    margin-bottom: 7rem;
}

#info{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
}

#login{
    width: 30%;
    font-size: 1.7rem;
}

#info-content{
    width: 40%;
}

p{
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

h2{
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

ul{
    position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.2rem 1.6rem;
  background-color: var(--bg-color);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
li{
    display: inline;
    margin: 0 1rem;
    font-size: 1.5rem;
}
a:hover{
    color: var(--orange);
    transition: all 0.2s ease-in-out;
}



