* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100vh;
    background: #ffffff;
    min-width: 320px;
    font-family: Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    overflow: hidden;
}

#msg {
    position:absolute;
    bottom: -100px;
    right:0;
    width:100vw;
    z-index: 9;
    text-align: center;
    transition: bottom 0.8s ease-in 0.2s;
    cursor: pointer;
	opacity: 0;
}

#msg p {
    display: inline-block;
    padding: 8px;
    background-color: rgba(201, 177, 125, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 8px;
    font-size: 0.8rem;
}

#intro-main {
    position: fixed;
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    width: 100%;
}

#intro-content {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    align-items: center;
}

.intro-img-cont {
    text-align: center;
    margin-top: 5px;
    position: relative;
}

.intro-img img {
    width: 100%;
    border: 5px solid #ffffff;
	box-sizing: border-box;
}

#title-cont {
    position: absolute;
    left: 0;
    bottom: 8%;
    width: 100%;
    text-align: center;
}

#title-cont picture img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 500px;
}

#intro-top {
   padding: 3%;
}

.intro-space {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#intro-buttons a {
    display: block;
    margin: 10px;
    border: 1px solid #a52170;
    border-radius: 6px;
    padding: 3px 5px;
    color: #a52170;
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}

#intro-buttons a:hover {
    border-color: #23318e;
    color: #23318e;
}

.intro-buttons a:first-child {
    margin-left: 3%;
}

.intro-buttons a:last-child {
    margin-right: 3%
}

.intro-common {
    max-width: 820px;
    width: 100%;
}

#intro-top picture img {
    width: 90%;
}

#intro-footer {
    flex-shrink: 0;
    margin-top: 20px;
    margin-bottom: 5px;
}

#intro-footer p {
    font-size: 0.8rem;
    text-align: center;
    color: #23318e;
}

#intro-footer span {
  display: none;
}

@media screen and (max-height: 380px) and (orientation: landscape) {
    #intro-buttons a {
        margin: 3px;
    }
}

@media screen and (max-height: 440px) and (orientation: landscape) {
    #intro-top {
        padding: 0.5%;
    }
}

@media screen and (max-height: 499px) and (orientation: landscape) {
    #title-cont picture img {
        max-width: 300px;
    }
}
